summaryrefslogtreecommitdiff
path: root/menu.h
blob: 85758c8c93072741e44c497b3ccd38e21d6cfe1c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/*
 * menu.h: The actual menu implementations
 *
 * See the main source file 'vdr.c' for copyright information and
 * how to reach the author.
 *
 * $Id: menu.h 1.4 2000/04/24 09:44:29 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