blob: 3d052b4d02c361a50816260151f819e82be122bf (
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
|
/*
* undelete: A plugin for the Video Disk Recorder
*
* See the README file for copyright information and how to reach the author.
*
* $Id: menusetup.h 0.2 0.1 2004/10/08 02:03:31 hflor Exp $
*/
#ifndef __MENUSETUP_H
#define __MENUSETUP_H
#include <vdr/menu.h>
#include <vdr/menuitems.h>
// --- cMenuSetupUndelete -------------------------------------------------------
class cMenuSetupUndelete : public cMenuSetupPage {
private:
int store;
protected:
virtual void Store(void);
public:
cMenuSetupUndelete(void);
virtual ~cMenuSetupUndelete(void);
virtual void Set(void);
virtual eOSState ProcessKey(eKeys Key);
};
#endif //__MENUSETUP_H
|