seperated public include headers
This commit is contained in:
25
FlippR-Driver/src/output/IDisplay.h
Normal file
25
FlippR-Driver/src/output/IDisplay.h
Normal file
@@ -0,0 +1,25 @@
|
||||
/*
|
||||
* IDisplay.h
|
||||
*
|
||||
* Created on: Aug 2, 2018
|
||||
* Author: rhetenor
|
||||
*/
|
||||
|
||||
#ifndef SOURCE_DIRECTORY__SRC_OUTPUT_IDISPLAY_H_
|
||||
#define SOURCE_DIRECTORY__SRC_OUTPUT_IDISPLAY_H_
|
||||
|
||||
namespace output {
|
||||
|
||||
class IDisplay {
|
||||
public:
|
||||
IDisplay();
|
||||
virtual ~IDisplay();
|
||||
|
||||
virtual int getID();
|
||||
|
||||
virtual void write() = 0;
|
||||
};
|
||||
|
||||
} /* namespace output */
|
||||
|
||||
#endif /* SOURCE_DIRECTORY__SRC_OUTPUT_IDISPLAY_H_ */
|
||||
Reference in New Issue
Block a user