vdr/menu.h

29 lines
494 B
C
Raw Normal View History

2000-02-19 13:36:48 +01:00
/*
* menu.h: The actual menu implementations
*
* See the main source file 'osm.c' for copyright information and
* how to reach the author.
*
2000-04-23 15:38:16 +02:00
* $Id: menu.h 1.3 2000/04/23 09:25:33 kls Exp $
2000-02-19 13:36:48 +01:00
*/
#ifndef _MENU_H
#define _MENU_H
#include "osd.h"
class cMenuMain : public cOsdMenu {
public:
cMenuMain(void);
virtual eOSState ProcessKey(eKeys Key);
2000-02-19 13:36:48 +01:00
};
2000-04-23 15:38:16 +02:00
class cReplayDisplay {
public:
cReplayDisplay(void);
~cReplayDisplay();
eKeys ProcessKey(eKeys Key);
};
2000-02-19 13:36:48 +01:00
#endif //_MENU_H