/* * DeviceTypeSensor.hh * * Created on: Feb 28, 2011 * Author: lamikr */ #ifndef DEVICETYPESENSOR_HH_ #define DEVICETYPESENSOR_HH_ #include #include "DeviceTypeGeneric.hh" namespace plp { class DeviceTypeSensor : public DeviceTypeGeneric { public: virtual std::string get_unit() = 0; virtual plp::Data *get_data() = 0; virtual void save_data() = 0; }; } #endif /* DEVICETYPESENSOR_HH_ */