blob: 849d8ee3d19fa58e6a9161940c122b564a824cfd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/*
* 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.1 2000/02/19 13:36:48 kls Exp $
*/
#ifndef _MENU_H
#define _MENU_H
#include "osd.h"
class cMenuMain : public cOsdMenu {
public:
cMenuMain(void);
virtual eOSStatus ProcessKey(eKeys Key);
};
#endif //_MENU_H
|