| 82 | } |
| 83 | |
| 84 | QFuture<TaskState> BaseTask::executeAsync() |
| 85 | { |
| 86 | return QtConcurrent::task([this]() -> TaskState { return execute(); }).spawn(); |
| 87 | } |
| 88 | |
| 89 | QString BaseTask::taskStateAsString(TaskState state) |
| 90 | { |
nothing calls this directly
no outgoing calls
no test coverage detected