/* * DeviceConfig.hh * * Created on: Dec 9, 2010 * Author: lamikr */ #ifndef DEVICECONFIG_HH_ #define DEVICECONFIG_HH_ #include namespace w1 { class DeviceConfig { public: DeviceConfig(std::string device_id_param); virtual ~DeviceConfig(); std::string get_config_value(std::string key); private: std::string device_id; }; } #endif /* DEVICECONFIG_HH_ */