Files
flippr-code/FlippR-Driver/src/output/IOutputDriver.h
Jonas Zeunert 094d76181e compiling
2018-08-07 21:37:13 +02:00

22 lines
325 B
C++

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