blob: 0726159a72d7b8633f4ce2402a7c838cb1332e87 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
/*
* autotimeredit: 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
|