35 lines
476 B
C++
35 lines
476 B
C++
/*
|
|
* 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<char> get_content() const = 0;
|
|
};
|
|
|
|
}
|
|
} /* namespace output */
|
|
}
|
|
#endif
|