blob: 6800badf047d11b65c7a310a461dacbdc787f0ae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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
|