35 lines
476 B
C++
35 lines
476 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(unsigned int score) = 0;
|
|
};
|
|
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
#endif /* SRC_OUTPUT_IOUTPUTDISPLAY_H_ */
|