Get weather Information

Revision:
1:8655f1720450
Parent:
0:6d53d6d34ac3
Child:
2:76b812680942
--- a/WeatherInfo.h	Sat Jun 27 10:34:38 2015 +0000
+++ b/WeatherInfo.h	Sun Jun 28 00:17:02 2015 +0000
@@ -9,9 +9,12 @@
 public:
     WeatherInfo(enum WeatherInfoSource s) ; 
     ~WeatherInfo();
+    void setBuff(char *buff, int size) ;
     bool getInfo() ;
 private:
     enum WeatherInfoSource source ;
+    char *recvBuff ;
+    int  recvSize  ;
 } ;
 
 #endif