29 lines
427 B
C++
29 lines
427 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 virtual Display
|
|
{
|
|
public:
|
|
virtual ~EightDigitDisplay() = default;
|
|
};
|
|
|
|
}
|
|
}
|
|
}
|
|
#endif //FLIPPR_DRIVER_IEIGHTDIGITDISPLAY_H
|