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