33 lines
343 B
C++
33 lines
343 B
C++
/*
|
|
* IDisplay.h
|
|
*
|
|
* Created on: Aug 2, 2018
|
|
* Author: rhetenor
|
|
*/
|
|
|
|
#ifndef _SRC_OUTPUT_IDISPLAY_H_
|
|
#define _SRC_OUTPUT_IDISPLAY_H_
|
|
|
|
#include <array>
|
|
|
|
namespace flippR_driver
|
|
{
|
|
namespace output
|
|
{
|
|
|
|
class IDisplay
|
|
{
|
|
|
|
public:
|
|
IDisplay();
|
|
virtual ~IDisplay();
|
|
|
|
virtual int getID() = 0;
|
|
|
|
virtual
|
|
};
|
|
|
|
} /* namespace output */
|
|
}
|
|
#endif
|