summaryrefslogtreecommitdiff
path: root/services.h
blob: fce080ab493ae80bb3dc244a9a88219b2a9dcefd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
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