blob: 6adc3fb80c08c1bcfd211b6b56f6bc49eee94f8d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#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;
string city;
float lat;
float lon;
};
#endif //__WEATHERFORECAST_CONFIG_H
|