diff options
author | louis <louis.braun@gmx.de> | 2015-01-15 13:12:47 +0100 |
---|---|---|
committer | louis <louis.braun@gmx.de> | 2015-01-15 13:12:47 +0100 |
commit | c7f71f3f2b580714bd9e5a5c773bc2179c0e8567 (patch) | |
tree | a39d3efd5494b60964152e559eaead76c7897af5 /config.h | |
download | vdr-plugin-weatherforecast-0.0.1.tar.gz vdr-plugin-weatherforecast-0.0.1.tar.bz2 |
Initial commit0.0.1
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 |