diff options
Diffstat (limited to 'setup.h')
-rw-r--r-- | setup.h | 22 |
1 files changed, 22 insertions, 0 deletions
@@ -0,0 +1,22 @@ +#ifndef __WEATHERFORECAST_SETUP_H +#define __WEATHERFORECAST_SETUP_H + +#include "config.h" + +extern cWeatherforecastConfig weatherConfig; +using namespace std; + +class cWeatherforecastSetup : public cMenuSetupPage { + public: + cWeatherforecastSetup(void); + virtual ~cWeatherforecastSetup(); + char city[100]; + char lat[10]; + char lon[10]; + private: + cWeatherforecastConfig data; + void Setup(void); + virtual eOSState ProcessKey(eKeys Key); + virtual void Store(void); +}; +#endif //__WEATHERFORECAST_SETUP_H |