diff options
Diffstat (limited to 'setup.h')
-rw-r--r-- | setup.h | 30 |
1 files changed, 30 insertions, 0 deletions
@@ -0,0 +1,30 @@ +#ifndef __TVSCRAPER_SETUP_H +#define __TVSCRAPER_SETUP_H + +using namespace std; + +class cTVScraperSetup : public cMenuSetupPage { + public: + cTVScraperSetup(cTVScraperWorker *workerThread); + virtual ~cTVScraperSetup(); + private: + vector<int> channelsScrap; + cTVScraperWorker *worker; + void Setup(void); + protected: + virtual eOSState ProcessKey(eKeys Key); + virtual void Store(void); +}; + +class cTVScraperChannelSetup : public cOsdMenu { + public: + cTVScraperChannelSetup(vector<int> *channelsScrap); + virtual ~cTVScraperChannelSetup(); + private: + vector<int> *channelsScrap; + void Setup(void); + protected: + virtual eOSState ProcessKey(eKeys Key); +}; + +#endif //__TVSCRAPER_SETUP_H
\ No newline at end of file |