Keyset update
[pierogi] / keysets / dreambox.h
1 #ifndef DREAMBOX_H
2 #define DREAMBOX_H
3
4 #include "pirkeysetmetadata.h"
5
6 class QObject;
7
8 class DreamboxSat1: public PIRKeysetMetaData
9 {
10 public:
11   DreamboxSat1(
12     unsigned int index);
13
14   virtual void populateProtocol(
15     QObject *guiObject);
16 };
17
18 class DreamboxSat1a: public DreamboxSat1
19 {
20 public:
21   DreamboxSat1a(
22     unsigned int index);
23
24   virtual void populateProtocol(
25     QObject *guiObject);
26 };
27
28 class DreamboxSat1b: public DreamboxSat1
29 {
30 public:
31   DreamboxSat1b(
32     unsigned int index);
33
34   virtual void populateProtocol(
35     QObject *guiObject);
36 };
37
38 class DreamboxSat1c: public DreamboxSat1
39 {
40 public:
41   DreamboxSat1c(
42     unsigned int index);
43
44   virtual void populateProtocol(
45     QObject *guiObject);
46 };
47
48 class DreamboxSat2: public PIRKeysetMetaData
49 {
50 public:
51   DreamboxSat2(
52     unsigned int index);
53
54   virtual void populateProtocol(
55     QObject *guiObject);
56 };
57
58 class DreamboxSat3: public PIRKeysetMetaData
59 {
60 public:
61   DreamboxSat3(
62     unsigned int index);
63
64   virtual void populateProtocol(
65     QObject *guiObject);
66 };
67
68 class DreamboxSat4: public PIRKeysetMetaData
69 {
70 public:
71   DreamboxSat4(
72     unsigned int index);
73
74   virtual void populateProtocol(
75     QObject *guiObject);
76 };
77
78 class DreamboxSat5: public PIRKeysetMetaData
79 {
80 public:
81   DreamboxSat5(
82     unsigned int index);
83
84   virtual void populateProtocol(
85     QObject *guiObject);
86 };
87
88 #endif // DREAMBOX_H