/* * W1CounterDevice.hh * * Created on: Oct 30, 2010 * Author: lamikr */ #ifndef W1COUNTERDEVICE_HH_ #define W1COUNTERDEVICE_HH_ #include #include "W1Device.hh" namespace w1 { class W1CounterDevice: public W1Device { public: W1CounterDevice(std::string device_id_param, std::string device_type_param, dirent *direntry_param); virtual ~W1CounterDevice(); std::string get_unit(); protected: std::vector *get_raw_data(); unsigned int get_data_decimal_precision(); }; } #endif /* W1COUNTERDEVICE_HH_ */