Tidied structure of all classes within the entire code base
Also some other small bits of tidying
This commit is contained in:
@@ -8,17 +8,18 @@ namespace Bloom
|
||||
{
|
||||
class RefreshTargetPinStates: public InsightWorkerTask
|
||||
{
|
||||
Q_OBJECT
|
||||
private:
|
||||
int variantId;
|
||||
|
||||
protected:
|
||||
void run(TargetControllerConsole& targetControllerConsole) override;
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
RefreshTargetPinStates(int variantId): InsightWorkerTask(), variantId(variantId) {}
|
||||
|
||||
signals:
|
||||
void targetPinStatesRetrieved(Bloom::Targets::TargetPinStateMappingType pinStatesByNumber);
|
||||
|
||||
protected:
|
||||
void run(TargetControllerConsole& targetControllerConsole) override;
|
||||
|
||||
private:
|
||||
int variantId;
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user