summaryrefslogtreecommitdiff
path: root/setup.h
diff options
context:
space:
mode:
Diffstat (limited to 'setup.h')
-rw-r--r--setup.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/setup.h b/setup.h
new file mode 100644
index 0000000..baf417f
--- /dev/null
+++ b/setup.h
@@ -0,0 +1,25 @@
+#ifndef __SCRAPER2VDR_SETUP_H
+#define __SCRAPER2VDR_SETUP_H
+
+#include <vdr/menuitems.h>
+#include "update.h"
+#include "config.h"
+
+class cScraper2VdrSetup : public cMenuSetupPage {
+ public:
+ cScraper2VdrSetup(cUpdate *update);
+ virtual ~cScraper2VdrSetup();
+ private:
+ cUpdate *update;
+ cScraper2VdrConfig tmpConfig;
+ char host[256];
+ char dbname[256];
+ char user[256];
+ char password[256];
+ void Setup(void);
+ protected:
+ virtual eOSState ProcessKey(eKeys Key);
+ virtual void Store(void);
+
+};
+#endif //__SCRAPER2VDR_SETUP_H \ No newline at end of file