vdr/menu.h

29 lines
494 B
C++

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