23 lines
281 B
C++
23 lines
281 B
C++
/*
|
|
* Lamp.h
|
|
*
|
|
* Created on: Aug 2, 2018
|
|
* Author: rhetenor
|
|
*/
|
|
|
|
#ifndef _SRC_OUTPUT_LAMP_H_
|
|
#define _SRC_OUTPUT_LAMP_H_
|
|
|
|
#include "CabinetItem.h"
|
|
|
|
namespace output {
|
|
|
|
class Lamp: public CabinetItem {
|
|
public:
|
|
Lamp();
|
|
virtual ~Lamp();
|
|
};
|
|
|
|
} /* namespace output */
|
|
|
|
#endif |