Files
flippr-code/FlippR-Driver/include/output/IOutputDriver.h
2018-11-23 13:46:09 +01:00

25 lines
357 B
C++

/*
* IOutputDriver.h
*
* Created on: Aug 2, 2018
* Author: Andreas Schneider, Johannes Wendel, Jonas Zeunert
*/
#ifndef _SRC_OUTPUT_IOUTPUTDRIVER_H_
#define _SRC_OUTPUT_IOUTPUTDRIVER_H_
namespace flippR_driver
{
namespace output
{
class IOutputDriver
{
public:
IOutputDriver();
virtual ~IOutputDriver();
};
} /* namespace output */
}
#endif