]> pilppa.org Git - lib1wire.git/blob - src/DeviceConfig.hh
0c9a3b5917f9ae58e0e64624e8a3093b657c793a
[lib1wire.git] / src / DeviceConfig.hh
1 /*
2  * DeviceConfig.hh
3  *
4  *  Created on: Dec 9, 2010
5  *      Author: lamikr
6  */
7
8 #ifndef DEVICECONFIG_HH_
9 #define DEVICECONFIG_HH_
10
11 #include <string>
12
13 namespace w1 {
14         class DeviceConfig {
15                 public:
16                         DeviceConfig(std::string device_id_param);
17                         virtual ~DeviceConfig();
18                         std::string get_config_value(std::string key);
19                 private:
20                         std::string     device_id;
21         };
22 }
23
24 #endif /* DEVICECONFIG_HH_ */