changed everything to impl
This commit is contained in:
34
FlippR-Driver/include/output/items/Lamp.h
Normal file
34
FlippR-Driver/include/output/items/Lamp.h
Normal file
@@ -0,0 +1,34 @@
|
||||
/*
|
||||
* Lamp.h
|
||||
*
|
||||
* Created on: Aug 7, 2018
|
||||
* Author: Andreas Schneider, Johannes Wendel, Jonas Zeunert
|
||||
*/
|
||||
|
||||
#ifndef _SRC_OUTPUT_ILAMP_H_
|
||||
#define _SRC_OUTPUT_ILAMP_H_
|
||||
|
||||
#include "output/items/Item.h"
|
||||
namespace flippR_driver
|
||||
{
|
||||
namespace output
|
||||
{
|
||||
namespace items
|
||||
{
|
||||
|
||||
class Lamp
|
||||
{
|
||||
public:
|
||||
~Lamp()
|
||||
{};
|
||||
|
||||
virtual void activate() = 0;
|
||||
virtual void deactivate() = 0;
|
||||
virtual bool is_activated() = 0;
|
||||
};
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user