diff options
author | louis <louis.braun@gmx.de> | 2015-01-13 12:49:05 +0100 |
---|---|---|
committer | louis <louis.braun@gmx.de> | 2015-01-13 12:49:05 +0100 |
commit | e13811af7f525f973257dcb1bb833fcff7732dc8 (patch) | |
tree | 39753617dd2acff72d508a9faee1b5ef2ae97da7 /services/weatherforecast.h | |
parent | 30b3a8c935c019154ab50d099b499fe170efc196 (diff) | |
download | vdr-plugin-skindesigner-e13811af7f525f973257dcb1bb833fcff7732dc8.tar.gz vdr-plugin-skindesigner-e13811af7f525f973257dcb1bb833fcff7732dc8.tar.bz2 |
added weatherforecast template
Diffstat (limited to 'services/weatherforecast.h')
-rw-r--r-- | services/weatherforecast.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/services/weatherforecast.h b/services/weatherforecast.h index c3f6b48..13f3c1e 100644 --- a/services/weatherforecast.h +++ b/services/weatherforecast.h @@ -8,6 +8,8 @@ public: cServiceCurrentWeather(void) { timeStamp = ""; temperature = ""; + minTemperature = ""; + maxTemperature = ""; apparentTemperature = ""; summary = ""; icon = ""; @@ -26,6 +28,8 @@ public: std::string timeStamp; std::string temperature; std::string apparentTemperature; + std::string minTemperature; + std::string maxTemperature; std::string summary; std::string icon; std::string precipitationIntensity; |