33 lines
359 B
C++
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 |