34 lines
423 B
C++
34 lines
423 B
C++
/*
|
|
* Display.h
|
|
*
|
|
* Created on: Aug 2, 2018
|
|
* Author: rhetenor
|
|
*/
|
|
|
|
#ifndef _SRC_OUTPUT_DISPLAY_H_
|
|
#define _SRC_OUTPUT_DISPLAY_H_
|
|
|
|
#include "IDisplay.h"
|
|
|
|
namespace output {
|
|
|
|
class Display: public IDisplay {
|
|
public:
|
|
Display();
|
|
virtual ~Display();
|
|
|
|
virtual int getID();
|
|
virtual void write();
|
|
|
|
public:
|
|
int score;
|
|
|
|
private:
|
|
int address;
|
|
int id;
|
|
};
|
|
|
|
} /* namespace output */
|
|
|
|
#endif /* _SRC_OUTPUT_DISPLAY_H_ */
|