29 lines
402 B
C++
29 lines
402 B
C++
//
|
|
// Created by rhetenor on 20.11.18.
|
|
//
|
|
|
|
#ifndef FLIPPR_DRIVER_ISEVENDIGITDISPLAY_H
|
|
#define FLIPPR_DRIVER_ISEVENDIGITDISPLAY_H
|
|
|
|
#include "Display.h"
|
|
|
|
#include <array>
|
|
|
|
namespace flippr_driver
|
|
{
|
|
namespace output
|
|
{
|
|
namespace items
|
|
{
|
|
|
|
class SevenDigitDisplay : public Display
|
|
{
|
|
public:
|
|
virtual void write_content(std::array<char, 7> content) = 0;
|
|
};
|
|
|
|
}
|
|
}
|
|
}
|
|
#endif //FLIPPR_DRIVER_ISEVENDIGITDISPLAY_H
|