35 lines
467 B
C++
35 lines
467 B
C++
/*
|
|
* IDisplay.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 IDisplay
|
|
{
|
|
|
|
public:
|
|
virtual ~IDisplay() = default;
|
|
|
|
virtual uint8_t get_address() = 0;
|
|
virtual std::vector<char> get_content() = 0;
|
|
};
|
|
|
|
}
|
|
} /* namespace output */
|
|
}
|
|
#endif
|