implementing displays and refactor fail

This commit is contained in:
Jonas Zeunert
2018-12-14 14:20:11 +01:00
parent f9edf2f8cc
commit 49cd625808
20 changed files with 100 additions and 48 deletions

View File

@@ -0,0 +1,34 @@
/*
* Display.h
*
* Created on: Aug 2, 2018
* Author: Andreas Schneider, Johannes Wendel, Jonas Zeunert
*/
#ifndef _SRC_OUTPUT_IDISPLAY_H_
#define _SRC_OUTPUT_IDISPLAY_H_
#include <vector>
#include <cstdint>
namespace flippR_driver
{
namespace output
{
namespace items
{
class Display
{
public:
virtual ~Display() = default;
virtual uint8_t get_address() const = 0;
virtual std::vector<uint8_t> get_content() const = 0;
};
}
} /* namespace output */
}
#endif