/* * ILamp.h * * Created on: Aug 7, 2018 * Author: rhetenor */ #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