]> pilppa.org Git - libplp.git/blob - src/Device.cc
w1 independent file cleanups.
[libplp.git] / src / Device.cc
1 /*
2  * Device.cc
3  *
4  *  Created on: Mar 5, 2011
5  *      Author: lamikr
6  */
7 #include <string>
8
9 #include "Device.hh"
10 #include "DeviceConfig.hh"
11
12 using namespace std;
13 using namespace plp;
14
15 Device::Device(string id_param, string type_param) : plp::DeviceData(id_param, type_param) {
16 }
17
18 Device::Device(string id_param, string type_param, string name_param, EnumDeviceLifeCycleStatus status_param) : plp::DeviceData(id_param, type_param, name_param, status_param) {
19 }