summaryrefslogtreecommitdiff
path: root/setup.h
diff options
context:
space:
mode:
Diffstat (limited to 'setup.h')
-rw-r--r--setup.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/setup.h b/setup.h
new file mode 100644
index 0000000..6800bad
--- /dev/null
+++ b/setup.h
@@ -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