Files
flippr-code/FlippR-Driver/src/output/IOutputDriver.h
2018-10-04 20:57:43 +02:00

25 lines
316 B
C++

/*
* IOutputDriver.h
*
* Created on: Aug 2, 2018
* Author: rhetenor
*/
#ifndef _SRC_OUTPUT_IOUTPUTDRIVER_H_
#define _SRC_OUTPUT_IOUTPUTDRIVER_H_
namespace FlippR_Driver
{
namespace output
{
class IOutputDriver
{
public:
IOutputDriver();
virtual ~IOutputDriver();
};
} /* namespace output */
}
#endif