summaryrefslogtreecommitdiff
path: root/services.h
diff options
context:
space:
mode:
authorlouis <louis.braun@gmx.de>2015-01-15 13:12:47 +0100
committerlouis <louis.braun@gmx.de>2015-01-15 13:12:47 +0100
commitc7f71f3f2b580714bd9e5a5c773bc2179c0e8567 (patch)
treea39d3efd5494b60964152e559eaead76c7897af5 /services.h
downloadvdr-plugin-weatherforecast-0.0.1.tar.gz
vdr-plugin-weatherforecast-0.0.1.tar.bz2
Initial commit0.0.1
Diffstat (limited to 'services.h')
-rw-r--r--services.h49
1 files changed, 49 insertions, 0 deletions
diff --git a/services.h b/services.h
new file mode 100644
index 0000000..fce080a
--- /dev/null
+++ b/services.h
@@ -0,0 +1,49 @@
+#ifndef __WEATHERFORECASTSERVICES_H
+#define __WEATHERFORECASTSERVICES_H
+
+#include <string>
+
+class cServiceCurrentWeather {
+public:
+ cServiceCurrentWeather(void) {
+ timeStamp = "";
+ temperature = "";
+ minTemperature = "";
+ maxTemperature = "";
+ apparentTemperature = "";
+ summary = "";
+ icon = "";
+ precipitationIntensity = "";
+ precipitationProbability = 0;
+ precipitationType = "";
+ humidity = 0;
+ windSpeed = "";
+ windBearing = 0;
+ windBearingString = "";
+ visibility = "";
+ cloudCover = 0;
+ pressure = "";
+ ozone = "";
+ };
+ std::string timeStamp;
+ std::string temperature;
+ std::string apparentTemperature;
+ std::string minTemperature;
+ std::string maxTemperature;
+ std::string summary;
+ std::string icon;
+ std::string precipitationIntensity;
+ int precipitationProbability;
+ std::string precipitationType;
+ int humidity;
+ std::string windSpeed;
+ int windBearing;
+ std::string windBearingString;
+ std::string visibility;
+ int cloudCover;
+ std::string pressure;
+ std::string ozone;
+};
+
+#endif //__WEATHERFORECASTSERVICES_H
+