changed to moveconstruct

This commit is contained in:
Jonas Zeunert
2018-12-07 11:37:00 +01:00
parent f67845ce55
commit 0f0f404e19
4 changed files with 7 additions and 7 deletions

View File

@@ -21,9 +21,9 @@ public:
~ILamp()
{};
void activate();
void deactivate();
bool is_activated();
virtual void activate() = 0;
virtual void deactivate() = 0;
virtual bool is_activated() = 0;
};
}

View File

@@ -20,7 +20,7 @@ class ISolenoid
public:
~ISolenoid()
{};
void trigger();
virtual void trigger() = 0;
};
}