Added support for grouping InsightWorker tasks

This commit is contained in:
Nav
2022-09-08 19:54:37 +01:00
parent 1ddff3c2a4
commit c460c9d7e1
4 changed files with 72 additions and 24 deletions

View File

@@ -3,6 +3,7 @@
#include <QObject>
#include <QString>
#include "TaskGroup.hpp"
#include "src/TargetController/TargetControllerConsole.hpp"
namespace Bloom
@@ -24,6 +25,10 @@ namespace Bloom
InsightWorkerTask(): QObject(nullptr) {};
virtual TaskGroups getTaskGroups() const {
return TaskGroups();
};
void execute(TargetController::TargetControllerConsole& targetControllerConsole);
signals: