seperated public include headers
This commit is contained in:
27
FlippR-Driver/src/output/IDisplayController.h
Normal file
27
FlippR-Driver/src/output/IDisplayController.h
Normal file
@@ -0,0 +1,27 @@
|
||||
/*
|
||||
* IDisplayController.h
|
||||
*
|
||||
* Created on: Aug 2, 2018
|
||||
* Author: rhetenor
|
||||
*/
|
||||
|
||||
#ifndef SOURCE_DIRECTORY__SRC_OUTPUT_IDISPLAYCONTROLLER_H_
|
||||
#define SOURCE_DIRECTORY__SRC_OUTPUT_IDISPLAYCONTROLLER_H_
|
||||
#include "config.h"
|
||||
#include "IDisplay.h"
|
||||
#include <array>
|
||||
|
||||
namespace output {
|
||||
|
||||
class IDisplayController {
|
||||
public:
|
||||
IDisplayController();
|
||||
virtual ~IDisplayController();
|
||||
|
||||
private:
|
||||
std::array<IDisplay, NUMBER_OF_DISPLAYS> displays;
|
||||
};
|
||||
|
||||
} /* namespace output */
|
||||
|
||||
#endif /* SOURCE_DIRECTORY__SRC_OUTPUT_IDISPLAYCONTROLLER_H_ */
|
||||
Reference in New Issue
Block a user