Files
flippr-code/FlippR-Driver/include/output/items/ILamp.h
2018-11-23 13:46:09 +01:00

33 lines
359 B
C++

/*
* ILamp.h
*
* Created on: Aug 7, 2018
* Author: Andreas Schneider, Johannes Wendel, Jonas Zeunert
*/
#ifndef _SRC_OUTPUT_ILAMP_H_
#define _SRC_OUTPUT_ILAMP_H_
namespace flippR_driver
{
namespace output
{
namespace items
{
class ILamp
{
public:
~ILamp()
{};
void activate();
void deactivate();
bool is_activated();
};
}
}
}
#endif