Get weather Information

WeatherInfo.h

Committer:
takashikojo
Date:
2015-06-27
Revision:
0:6d53d6d34ac3
Child:
1:8655f1720450

File content as of revision 0:6d53d6d34ac3:

#ifndef WEATHERINFO_H
#define WEATHERINFO_H

enum WeatherInfoSource  {
    WEATHER_HACKS
} ;

class WeatherInfo {
public:
    WeatherInfo(enum WeatherInfoSource s) ; 
    ~WeatherInfo();
    bool getInfo() ;
private:
    enum WeatherInfoSource source ;
} ;

#endif