Files
flippr-code/FlippR-Driver/src/output/IDisplay.h
2018-11-08 00:42:31 +01:00

28 lines
314 B
C++

/*
* IDisplay.h
*
* Created on: Aug 2, 2018
* Author: rhetenor
*/
#ifndef _SRC_OUTPUT_IDISPLAY_H_
#define _SRC_OUTPUT_IDISPLAY_H_
namespace FlippR_Driver
{
namespace output
{
class IDisplay
{
public:
IDisplay();
virtual ~IDisplay();
virtual int getID() = 0;
};
} /* namespace output */
}
#endif