blob: e7812c6124b525e13d0b445207913da3b673a333 (
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_CONFIG_H
#define __WEATHERFORECAST_CONFIG_H
#include <string>
#include <vdr/plugin.h>
using namespace std;
class cWeatherforecastConfig {
private:
public:
cWeatherforecastConfig();
~cWeatherforecastConfig();
bool SetupParse(const char *Name, const char *Value);
int hoursToUpdate;
int userHoursToUpdate;
string city;
float lat;
float lon;
string userApiKey;
};
#endif //__WEATHERFORECAST_CONFIG_H
|