33 lines
438 B
C++
33 lines
438 B
C++
/*
|
|
* IOutputDisplay.h
|
|
*
|
|
* Created on: Nov 20, 2018
|
|
* Author: Andreas Schneider, Johannes Wendel, Jonas Zeunert
|
|
*/
|
|
|
|
#ifndef FLIPPR_DRIVER_OUTPUT_ITEMS_DISPLAY_H_
|
|
#define FLIPPR_DRIVER_OUTPUT_ITEMS_DISPLAY_H_
|
|
|
|
namespace flippR_driver
|
|
{
|
|
namespace output
|
|
{
|
|
namespace items
|
|
{
|
|
|
|
class Display
|
|
{
|
|
|
|
public:
|
|
virtual ~Display() = default;
|
|
|
|
virtual void write_score(int score) = 0;
|
|
};
|
|
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
#endif /* SRC_OUTPUT_IOUTPUTDISPLAY_H_ */
|