00001 #ifndef _LCD_KDE_MULTIMEDIA_SENSOR_H_ 00002 #define _LCD_KDE_MULTIMEDIA_SENSOR_H_ 00003 00004 #include "LCDSensor.h" 00005 #include <string> 00006 00014 class LCDKdeMultimediaSensor : public LCDSensor 00015 { 00016 private: 00017 std::string _previousValue; 00018 std::string _defaultValue; 00019 public: 00020 virtual void waitForChange(); 00021 virtual std::string getCurrentValue(); 00028 LCDKdeMultimediaSensor(std::string defaultValue = ""); 00029 }; 00030 00031 #endif