templaaates

This commit is contained in:
Jonas Zeunert
2018-11-20 22:45:44 +01:00
parent e80b48805b
commit 39c2792520
4 changed files with 70 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
//
// Created by rhetenor on 20.11.18.
//
#ifndef FLIPPR_DRIVER_EIGHTDIGITDISPLAY_H
#define FLIPPR_DRIVER_EIGHTDIGITDISPLAY_H
#include "IEightDigitDisplay"
namespace flippr_driver
{
namespace output
{
class EightDigitDisplay : public Display<8>, IEightDigitDisplay;
}
}
#endif //FLIPPR_DRIVER_EIGHTDIGITDISPLAY_H

View File

@@ -0,0 +1,17 @@
//
// 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