blob: 1ce08c3caaf7588c7c4937185363df5c2e9b338d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
/*
* undelete: A plugin for the Video Disk Recorder
*
* See the README file for copyright information and how to reach the author.
*
* $Id: menueditkeys.h 0.4 2005/11/16 18:39:18 hflor Exp $
*/
#ifndef __MENUEDITKEYS_H
#define __MENUEDITKEYS_H
#include <vdr/menuitems.h>
// --- cMenuEditKeysItem -----------------------------------------------------
class cMenuEditKeysItem : public cMenuEditStraItem {
public:
cMenuEditKeysItem(const char *Name, int *Value);
virtual eOSState ProcessKey(eKeys Key);
};
#endif //__MENUEDITKEYS_H
|