26 lines
371 B
C++
26 lines
371 B
C++
//
|
|
// Created by rhetenor on 20.11.18.
|
|
//
|
|
|
|
#ifndef FLIPPR_DRIVER_EIGHTDIGITDISPLAY_H
|
|
#define FLIPPR_DRIVER_EIGHTDIGITDISPLAY_H
|
|
|
|
#include "output/items/EightDigitDisplay.h"
|
|
|
|
namespace flippr_driver
|
|
{
|
|
namespace output
|
|
{
|
|
namespace items
|
|
{
|
|
namespace impl
|
|
{
|
|
|
|
class EightDigitDisplay : public Display<8>, IEightDigitDisplay;
|
|
|
|
}
|
|
}
|
|
}
|
|
}
|
|
#endif //FLIPPR_DRIVER_EIGHTDIGITDISPLAY_H
|