// // Created by rhetenor on 20.11.18. // #ifndef FLIPPR_DRIVER_ISEVENDIGITDISPLAY_H #define FLIPPR_DRIVER_ISEVENDIGITDISPLAY_H #include "OutputDisplay.h" #include namespace flippr_driver { namespace output { namespace items { class ISevenDigitDisplay : public IOutputDisplay { public: virtual void write_content(std::array content) = 0; }; } } } #endif //FLIPPR_DRIVER_ISEVENDIGITDISPLAY_H