renamed impl to detail

This commit is contained in:
Jonas Zeunert
2018-12-14 16:16:44 +01:00
parent b663e130ac
commit 3b72274d6b
43 changed files with 111 additions and 111 deletions

View File

@@ -0,0 +1,44 @@
//
// Created by rhetenor on 20.11.18.
//
#ifndef FLIPPR_DRIVER_SEVENDIGITDISPLAY_H
#define FLIPPR_DRIVER_SEVENDIGITDISPLAY_H
#include "output/items/SevenDigitDisplay.h"
#include "output/items/detail/Display.h"
namespace flippR_driver
{
namespace output
{
namespace items
{
namespace detail
{
class SevenDigitDisplay : public Display<7>, public items::SevenDigitDisplay
{
public:
SevenDigitDisplay(uint8_t address, uint8_t id) :
Display<7>(address, id) {}
void write_score(uint score) override
{
Display<7>::write_score(score);
}
void write_content(std::array<char, 7> content) override
{
Display<7>::write_content(content);
}
~SevenDigitDisplay() override = default;
};
}
}
}
}
#endif //FLIPPR_DRIVER_SEVENDIGITDISPLAY_H