summaryrefslogtreecommitdiff
path: root/mymenusetup.h
blob: b137789f785510278b7277a290dc90329565265b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
class mySetup
{
 public:
  int ShowRecDate;
  int ShowRecTime;
  int ShowRecLength;
};

extern mySetup mysetup;

class myMenuSetup:public cMenuSetupPage
{
 private:
  int showrecdate;
  int showrectime;
  int showreclength;
 protected:
  virtual void Store();
 public:
  myMenuSetup();
};