2015-01-13 09:01:11 +01:00
|
|
|
#ifndef __WEATHERFORECASTSERVICES_H
|
|
|
|
#define __WEATHERFORECASTSERVICES_H
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
class cServiceCurrentWeather {
|
|
|
|
public:
|
|
|
|
cServiceCurrentWeather(void) {
|
|
|
|
timeStamp = "";
|
|
|
|
temperature = "";
|
2015-01-13 12:49:05 +01:00
|
|
|
minTemperature = "";
|
|
|
|
maxTemperature = "";
|
2015-01-13 09:01:11 +01:00
|
|
|
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;
|
2015-01-13 12:49:05 +01:00
|
|
|
std::string minTemperature;
|
|
|
|
std::string maxTemperature;
|
2015-01-13 09:01:11 +01:00
|
|
|
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
|
|
|
|
|