18 lines
287 B
C++
18 lines
287 B
C++
//
|
|
// Created by rhetenor on 20.11.18.
|
|
//
|
|
|
|
#ifndef FLIPPR_DRIVER_SEVENDIGITDISPLAY_H
|
|
#define FLIPPR_DRIVER_SEVENDIGITDISPLAY_H
|
|
|
|
namespace flippr_driver
|
|
{
|
|
namespace output
|
|
{
|
|
|
|
class SevenDigitDisplay : public Display<7>, ISevenDigitDisplay;
|
|
|
|
}
|
|
}
|
|
#endif //FLIPPR_DRIVER_SEVENDIGITDISPLAY_H
|