#ifndef __WEATHERFORECAST_CONFIG_H #define __WEATHERFORECAST_CONFIG_H #include #include using namespace std; class cWeatherforecastConfig { private: public: cWeatherforecastConfig(); ~cWeatherforecastConfig(); bool SetupParse(const char *Name, const char *Value); int hoursToUpdate; string city; float lat; float lon; }; #endif //__WEATHERFORECAST_CONFIG_H