25 lines
379 B
C++
25 lines
379 B
C++
//
|
|
// Created by rhetenor on 20.11.18.
|
|
//
|
|
|
|
#ifndef FLIPPR_DRIVER_ISEVENDIGITDISPLAY_H
|
|
#define FLIPPR_DRIVER_ISEVENDIGITDISPLAY_H
|
|
|
|
#include <array>
|
|
|
|
namespace flippr_driver
|
|
{
|
|
namespace output
|
|
{
|
|
|
|
class ISevenDigitDisplay
|
|
{
|
|
public:
|
|
virtual void write_score(int score);
|
|
virtual void write_content(std::array<char, 7> content);
|
|
};
|
|
|
|
}
|
|
}
|
|
#endif //FLIPPR_DRIVER_ISEVENDIGITDISPLAY_H
|