]> pilppa.org Git - lib1wire.git/blob - src/W1Store.hh
store each days file separately to year/month/id_year-month-day.txt subdir. Fix also...
[lib1wire.git] / src / W1Store.hh
1 /*
2  * W1Store.hh
3  *
4  *  Created on: Oct 31, 2010
5  *      Author: lamikr
6  */
7
8 #ifndef W1STORE_HH_
9 #define W1STORE_HH_
10
11 #include <string>
12 #include <list>
13
14 namespace w1 {
15         class W1Store {
16                 public:
17                         W1Store();
18                         virtual ~W1Store();
19                         static std::string location;
20                         static void set_location(std::string location_param);
21                         static void store(std::string device_id, std::list<std::string> *string_list);
22         };
23 }
24
25 #endif /* W1STORE_HH_ */