blob: c9f73327bf80c583e48f66129a42e49266aa384b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
/*
* setup_menu.h: Setup Menu
*
* See the README file for copyright information and how to reach the author.
*
*/
#ifndef __EPGFIXER_SETUP_MENU_H
#define __EPGFIXER_SETUP_MENU_H
#include <vdr/menuitems.h>
#include <vdr/tools.h>
#include "config.h"
class cMenuSetupEpgfixer : public cMenuSetupPage
{
private:
cEpgfixerSetup newconfig;
cVector<const char*> help;
protected:
virtual void Store(void);
void Set(void);
public:
cMenuSetupEpgfixer(void);
virtual eOSState ProcessKey(eKeys Key);
};
#endif //__EPGFIXER_SETUP_MENU_H
|