This commit is contained in:
Jonas Zeunert
2018-11-20 23:44:37 +01:00
parent d767449dce
commit c1e4c0d658
11 changed files with 13 additions and 7 deletions

View File

@@ -0,0 +1,25 @@
//
// Created by rhetenor on 20.11.18.
//
#ifndef FLIPPR_DRIVER_IEIGHTDIGITDISPLAY_H
#define FLIPPR_DRIVER_IEIGHTDIGITDISPLAY_H
#include "IOutputDisplay.h"
#include <array>
namespace flippr_driver
{
namespace output
{
class IEightDigitDisplay : public IOutputDisplay
{
public:
virtual void write_content(std::array<char, 8> content) = 0;
};
}
}
#endif //FLIPPR_DRIVER_IEIGHTDIGITDISPLAY_H