31 lines
448 B
C++
31 lines
448 B
C++
//
|
|
// Created by rhetenor on 20.11.18.
|
|
//
|
|
|
|
#ifndef FLIPPR_DRIVER_ISEVENDIGITDISPLAY_H
|
|
#define FLIPPR_DRIVER_ISEVENDIGITDISPLAY_H
|
|
|
|
#include <string>
|
|
|
|
#include "Display.h"
|
|
|
|
namespace flippR_driver
|
|
{
|
|
namespace output
|
|
{
|
|
namespace items
|
|
{
|
|
|
|
class SevenDigitDisplay : public virtual Display
|
|
{
|
|
public:
|
|
virtual ~SevenDigitDisplay() = default;
|
|
|
|
virtual void write_content(std::string & content) = 0;
|
|
};
|
|
|
|
}
|
|
}
|
|
}
|
|
#endif //FLIPPR_DRIVER_ISEVENDIGITDISPLAY_H
|