Moved TargetController components into new 'TargetController' namespace.

This commit is contained in:
Nav
2022-04-09 15:57:24 +01:00
parent 0a537dcf90
commit 8be1446e72
55 changed files with 134 additions and 39 deletions

View File

@@ -24,7 +24,7 @@ namespace Bloom
InsightWorkerTask(): QObject(nullptr) {};
void execute(TargetControllerConsole& targetControllerConsole);
void execute(TargetController::TargetControllerConsole& targetControllerConsole);
signals:
void started();
@@ -32,6 +32,6 @@ namespace Bloom
void completed();
protected:
virtual void run(TargetControllerConsole& targetControllerConsole) = 0;
virtual void run(TargetController::TargetControllerConsole& targetControllerConsole) = 0;
};
}