implementing displays and refactor fail
This commit is contained in:
32
FlippR-Driver/include/output/items/Display.h
Normal file
32
FlippR-Driver/include/output/items/Display.h
Normal file
@@ -0,0 +1,32 @@
|
||||
/*
|
||||
* 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 Display
|
||||
{
|
||||
|
||||
public:
|
||||
virtual ~IOutputDisplay() = default;
|
||||
|
||||
virtual void write_score(int score) = 0;
|
||||
};
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
#endif /* SRC_OUTPUT_IOUTPUTDISPLAY_H_ */
|
||||
Reference in New Issue
Block a user