/* * IDisplay.h * * Created on: Aug 2, 2018 * Author: rhetenor */ #ifndef _SRC_OUTPUT_IDISPLAY_H_ #define _SRC_OUTPUT_IDISPLAY_H_ namespace FlippR_Driver { namespace output { class IDisplay { public: IDisplay(); virtual ~IDisplay(); virtual int getID() = 0; }; } /* namespace output */ } #endif