summaryrefslogtreecommitdiff
path: root/setup.h
blob: b117300ff1c5adbd2551628d85a4cada287cbb79 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#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];
        char userApiKey[100];
        int userHoursToUpdate;
    private:
        cWeatherforecastConfig data;
        void Setup(void);
        virtual eOSState ProcessKey(eKeys Key);
        virtual void Store(void);
};
#endif //__WEATHERFORECAST_SETUP_H