00001 #ifndef _LCD_SYSTEM_SENSOR_H_ 00002 #define _LCD_SYSTEM_SENSOR_H_ 00003 00004 #include "LCDSensor.h" 00005 #include <string> 00006 00012 class LCDSystemSensor : public LCDSensor 00013 { 00014 private: 00015 std::string _command; 00016 00017 public: 00018 virtual void waitForChange(); 00019 virtual std::string getCurrentValue(); 00020 00027 LCDSystemSensor(const std::string &command); 00028 }; 00029 00030 #endif