Files
flippr-code/FlippR-Driver/src/output/ILamp.h
Jonas Zeunert 8eb1f724ea merging
2018-11-09 13:00:43 +01:00

26 lines
257 B
C++

/*
* ILamp.h
*
* Created on: Aug 7, 2018
* Author: rhetenor
*/
#ifndef _SRC_OUTPUT_ILAMP_H_
#define _SRC_OUTPUT_ILAMP_H_
#include "IOutputItem.h"
namespace FlippR_Driver
{
namespace output
{
class ILamp : public IOutputItem
{
};
}
}
#endif