Memory Management Improved
[pierogi] / keysets / bose.h
1 #ifndef BOSE_H
2 #define BOSE_H
3
4 #include "pirkeysetmetadata.h"
5
6 class QObject;
7
8 class BoseRadio1: public PIRKeysetMetaData
9 {
10 public:
11   BoseRadio1(
12     unsigned int index);
13
14   virtual void populateProtocol(
15     QObject *guiObject);
16 };
17
18 class BoseRadio2: public PIRKeysetMetaData
19 {
20 public:
21   BoseRadio2(
22     unsigned int index);
23
24   virtual void populateProtocol(
25     QObject *guiObject);
26 };
27
28 class BoseRadio3: public PIRKeysetMetaData
29 {
30 public:
31   BoseRadio3(
32     unsigned int index);
33
34   virtual void populateProtocol(
35     QObject *guiObject);
36 };
37
38 class BoseHomeTheater1: public PIRKeysetMetaData
39 {
40 public:
41   BoseHomeTheater1(
42     unsigned int index);
43
44   virtual void populateProtocol(
45     QObject *guiObject);
46 };
47
48 #endif // BOSE_H