summaryrefslogtreecommitdiff
path: root/mymenucommands.h
diff options
context:
space:
mode:
Diffstat (limited to 'mymenucommands.h')
-rw-r--r--mymenucommands.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/mymenucommands.h b/mymenucommands.h
new file mode 100644
index 0000000..3834c85
--- /dev/null
+++ b/mymenucommands.h
@@ -0,0 +1,11 @@
+class myMenuCommands:public cOsdMenu
+{
+ private:
+ cCommands *commands;
+ char *parameters;
+ eOSState Execute(void);
+ public:
+ myMenuCommands(const char *Title, cCommands *Commands, const char *Parameters = NULL);
+ virtual ~myMenuCommands();
+ virtual eOSState ProcessKey(eKeys Key);
+};