refactored namespaces

This commit is contained in:
Jonas Zeunert
2018-11-21 00:14:13 +01:00
parent 6cd1b21162
commit ab6979ae63
20 changed files with 82 additions and 31 deletions

View File

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