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