Get weather Information

Committer:
takashikojo
Date:
Sat Jun 27 10:34:38 2015 +0000
Revision:
0:6d53d6d34ac3
Child:
1:8655f1720450
Initial version

Who changed what in which revision?

UserRevisionLine numberNew contents of line
takashikojo 0:6d53d6d34ac3 1 #ifndef WEATHERINFO_H
takashikojo 0:6d53d6d34ac3 2 #define WEATHERINFO_H
takashikojo 0:6d53d6d34ac3 3
takashikojo 0:6d53d6d34ac3 4 enum WeatherInfoSource {
takashikojo 0:6d53d6d34ac3 5 WEATHER_HACKS
takashikojo 0:6d53d6d34ac3 6 } ;
takashikojo 0:6d53d6d34ac3 7
takashikojo 0:6d53d6d34ac3 8 class WeatherInfo {
takashikojo 0:6d53d6d34ac3 9 public:
takashikojo 0:6d53d6d34ac3 10 WeatherInfo(enum WeatherInfoSource s) ;
takashikojo 0:6d53d6d34ac3 11 ~WeatherInfo();
takashikojo 0:6d53d6d34ac3 12 bool getInfo() ;
takashikojo 0:6d53d6d34ac3 13 private:
takashikojo 0:6d53d6d34ac3 14 enum WeatherInfoSource source ;
takashikojo 0:6d53d6d34ac3 15 } ;
takashikojo 0:6d53d6d34ac3 16
takashikojo 0:6d53d6d34ac3 17 #endif