// // Created by rhetenor on 20.11.18. // #ifndef FLIPPR_DRIVER_ISEVENDIGITDISPLAY_H #define FLIPPR_DRIVER_ISEVENDIGITDISPLAY_H #include namespace flippr_driver { namespace output { class ISevenDigitDisplay { public: virtual void write_score(int score); virtual void write_content(std::array content); }; } } #endif //FLIPPR_DRIVER_ISEVENDIGITDISPLAY_H