blob: 4e12ac2d1ba0a10e5e0a1bb7eea05f490fc5cfff (
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
|
/*
* 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/menu.h>
#include <vdr/menuitems.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
|