/* * Lamp.h * * Created on: Aug 2, 2018 * Author: rhetenor */ #ifndef _SRC_OUTPUT_LAMP_H_ #define _SRC_OUTPUT_LAMP_H_ #include "CabinetItem.h" namespace FlippR_Driver { namespace output { class Lamp : public CabinetItem { public: Lamp(); virtual ~Lamp(); }; } /* namespace output */ } #endif