26 lines
257 B
C++
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 |