blob: fc17fdc5e619678e9bf002f9634e1994b9b25442 (
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
|
/*
* mainmenu.h
*/
#ifndef __MAINMENU_H
#define __MAINMENU_H
#include "dispatcher.h"
#include "cache.h"
#include <vdr/osdbase.h>
#include <vdr/plugin.h>
#include <string>
class cMainmenu : public cOsdMenu {
private:
bool active;
cDispatcher *dispatcher;
public:
cMainmenu(cDispatcher *_dispatcher);
virtual eOSState ProcessKey(eKeys key);
};
#endif /* __MAINMENU_H */
|