diff options
Diffstat (limited to 'config.h')
-rw-r--r-- | config.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/config.h b/config.h new file mode 100644 index 0000000..6adc3fb --- /dev/null +++ b/config.h @@ -0,0 +1,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 |