Memory Management Improved
[pierogi] / keysets / pioneer.h
1 #ifndef PIONEER_H
2 #define PIONEER_H
3
4 #include "pirkeysetmetadata.h"
5
6 class QObject;
7
8 class PioneerTV1: public PIRKeysetMetaData
9 {
10 public:
11   PioneerTV1(
12     unsigned int index);
13
14   virtual void populateProtocol(
15     QObject *guiObject);
16 };
17
18 class PioneerTV2: public PIRKeysetMetaData
19 {
20 public:
21   PioneerTV2(
22     unsigned int index);
23
24   virtual void populateProtocol(
25     QObject *guiObject);
26 };
27
28 class PioneerTV3: public PIRKeysetMetaData
29 {
30 public:
31   PioneerTV3(
32     unsigned int index);
33
34   virtual void populateProtocol(
35     QObject *guiObject);
36 };
37
38 class PioneerAudio1: public PIRKeysetMetaData
39 {
40 public:
41   PioneerAudio1(
42     unsigned int index);
43
44   virtual void populateProtocol(
45     QObject *guiObject);
46 };
47
48 class PioneerAudio1a: public PioneerAudio1
49 {
50 public:
51   PioneerAudio1a(
52     unsigned int index);
53
54   virtual void populateProtocol(
55     QObject *guiObject);
56 };
57
58 class PioneerAudio2: public PIRKeysetMetaData
59 {
60 public:
61   PioneerAudio2(
62     unsigned int index);
63
64   virtual void populateProtocol(
65     QObject *guiObject);
66 };
67
68 class PioneerAudio3: public PIRKeysetMetaData
69 {
70 public:
71   PioneerAudio3(
72     unsigned int index);
73
74   virtual void populateProtocol(
75     QObject *guiObject);
76 };
77
78 class PioneerAudio4: public PIRKeysetMetaData
79 {
80 public:
81   PioneerAudio4(
82     unsigned int index);
83
84   virtual void populateProtocol(
85     QObject *guiObject);
86 };
87
88 class PioneerAudio5: public PIRKeysetMetaData
89 {
90 public:
91   PioneerAudio5(
92     unsigned int index);
93
94   virtual void populateProtocol(
95     QObject *guiObject);
96 };
97
98 class PioneerCD1: public PIRKeysetMetaData
99 {
100 public:
101   PioneerCD1(
102     unsigned int index);
103
104   virtual void populateProtocol(
105     QObject *guiObject);
106 };
107
108 class PioneerLaserDisc1: public PIRKeysetMetaData
109 {
110 public:
111   PioneerLaserDisc1(
112     unsigned int index);
113
114   virtual void populateProtocol(
115     QObject *guiObject);
116 };
117
118 class PioneerDVD1: public PIRKeysetMetaData
119 {
120 public:
121   PioneerDVD1(
122     unsigned int index);
123
124   virtual void populateProtocol(
125     QObject *guiObject);
126 };
127
128 #endif // PIONEER_H