Get weather Information

Committer:
takashikojo
Date:
Sun Jun 28 00:17:02 2015 +0000
Revision:
1:8655f1720450
Parent:
0:6d53d6d34ac3
Child:
2:76b812680942
Added Weather Hacks

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 1:8655f1720450 12 void setBuff(char *buff, int size) ;
takashikojo 0:6d53d6d34ac3 13 bool getInfo() ;
takashikojo 0:6d53d6d34ac3 14 private:
takashikojo 0:6d53d6d34ac3 15 enum WeatherInfoSource source ;
takashikojo 1:8655f1720450 16 char *recvBuff ;
takashikojo 1:8655f1720450 17 int recvSize ;
takashikojo 0:6d53d6d34ac3 18 } ;
takashikojo 0:6d53d6d34ac3 19
takashikojo 0:6d53d6d34ac3 20 #endif