Memory Management Improved
[pierogi] / keysets / kenwood.h
1 #ifndef KENWOOD_H
2 #define KENWOOD_H
3
4 #include "pirkeysetmetadata.h"
5
6 class QObject;
7
8 class KenwoodAudio1: public PIRKeysetMetaData
9 {
10 public:
11   KenwoodAudio1(
12     unsigned int index);
13
14   virtual void populateProtocol(
15     QObject *guiObject);
16 };
17
18 class KenwoodComponent1: public PIRKeysetMetaData
19 {
20 public:
21   KenwoodComponent1(
22     unsigned int index);
23
24   virtual void populateProtocol(
25     QObject *guiObject);
26 };
27
28 class KenwoodComponent2: public PIRKeysetMetaData
29 {
30 public:
31   KenwoodComponent2(
32     unsigned int index);
33
34   virtual void populateProtocol(
35     QObject *guiObject);
36 };
37
38 class KenwoodComponent3: public PIRKeysetMetaData
39 {
40 public:
41   KenwoodComponent3(
42     unsigned int index);
43
44   virtual void populateProtocol(
45     QObject *guiObject);
46 };
47
48 class KenwoodCD1: public PIRKeysetMetaData
49 {
50 public:
51   KenwoodCD1(
52     unsigned int index);
53
54   virtual void populateProtocol(
55     QObject *guiObject);
56 };
57
58 class KenwoodDVD1: public PIRKeysetMetaData
59 {
60 public:
61   KenwoodDVD1(
62     unsigned int index);
63
64   virtual void populateProtocol(
65     QObject *guiObject);
66 };
67
68 class KenwoodTV1: public PIRKeysetMetaData
69 {
70 public:
71   KenwoodTV1(
72     unsigned int index);
73
74   virtual void populateProtocol(
75     QObject *guiObject);
76 };
77
78 #endif // KENWOOD_H