36 lines
529 B
C++
36 lines
529 B
C++
/*
|
|
* IOutputDisplay.h
|
|
*
|
|
* Created on: Nov 20, 2018
|
|
* Author: Johannes Wendel, Jonas Zeunert
|
|
*/
|
|
|
|
#ifndef FLIPPR_DRIVER_OUTPUT_ITEMS_DISPLAY_H_
|
|
#define FLIPPR_DRIVER_OUTPUT_ITEMS_DISPLAY_H_
|
|
|
|
#include "Item.h"
|
|
|
|
namespace flippR_driver
|
|
{
|
|
namespace output
|
|
{
|
|
namespace items
|
|
{
|
|
|
|
class Display : public virtual items::Item
|
|
{
|
|
|
|
public:
|
|
virtual ~Display() = default;
|
|
|
|
virtual void write_score(uint64_t score) = 0;
|
|
virtual void write_content(std::string & content) = 0;
|
|
};
|
|
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
#endif /* SRC_OUTPUT_IOUTPUTDISPLAY_H_ */
|