/* * W1Store.hh * * Created on: Oct 31, 2010 * Author: lamikr */ #ifndef W1STORE_HH_ #define W1STORE_HH_ #include #include namespace w1 { class W1Store { public: W1Store(); virtual ~W1Store(); static std::string location; static void set_location(std::string location_param); static void store(std::string device_id, std::list *string_list); }; } #endif /* W1STORE_HH_ */