Files
flippr-code/FlippR-Driver/include/output/items/IOutputDisplay.h
2018-11-23 13:46:09 +01:00

34 lines
429 B
C++

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