]> pilppa.org Git - libplp.git/blob - src/DeviceData.hh
5b110476ce138cd0b25a89e2d59338574993f9ca
[libplp.git] / src / DeviceData.hh
1 /*
2  * DeviceData.hh
3  *
4  *  Created on: Mar 10, 2011
5  *      Author: lamikr
6  */
7
8 #ifndef DEVICEDATA_HH_
9 #define DEVICEDATA_HH_
10
11 #include "Device.hh"
12
13 namespace plp {
14         class DeviceData : public Device {
15                 public:
16                         DeviceData(std::string id_param, std::string type_param);
17                         DeviceData(std::string id_param, std::string type_param, std::string name_param, plp::EnumDeviceLifeCycleStatus status_param);
18                         ~DeviceData();
19                         void printout();
20         };
21 }
22
23 #endif /* DEVICEDATA_HH_ */