summaryrefslogtreecommitdiff
path: root/mymenucommands.h
blob: 3834c859c483babdd9e132b5aa766d21337ab8a7 (plain)
1
2
3
4
5
6
7
8
9
10
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);
};