26 lines
351 B
C++
26 lines
351 B
C++
/*
|
|
* IDisplayController.h
|
|
*
|
|
* Created on: Aug 2, 2018
|
|
* Author: rhetenor
|
|
*/
|
|
|
|
#ifndef _SRC_OUTPUT_IDISPLAYCONTROLLER_H_
|
|
#define _SRC_OUTPUT_IDISPLAYCONTROLLER_H_
|
|
namespace flippR_driver
|
|
{
|
|
namespace output
|
|
{
|
|
|
|
class IDisplayController
|
|
{
|
|
|
|
public:
|
|
IDisplayController ();
|
|
virtual ~IDisplayController ();
|
|
};
|
|
|
|
} /* namespace output */
|
|
}
|
|
#endif
|