Adding per-keyset editable data
[pierogi] / keysets / lifetec.h
1 #ifndef LIFETEC_H
2 #define LIFETEC_H
3
4 #include "pirkeysetmetadata.h"
5
6 class QObject;
7
8 class LifetecTV1: public PIRKeysetMetaData
9 {
10 public:
11   LifetecTV1(
12     unsigned int index);
13
14   virtual void populateProtocol(
15     QObject *guiObject);
16 };
17
18
19 class LifetecTV2: public PIRKeysetMetaData
20 {
21 public:
22   LifetecTV2(
23     unsigned int index);
24
25   virtual void populateProtocol(
26     QObject *guiObject);
27 };
28
29
30 class LifetecVCR1: public PIRKeysetMetaData
31 {
32 public:
33   LifetecVCR1(
34     unsigned int index);
35
36   virtual void populateProtocol(
37     QObject *guiObject);
38 };
39
40
41 class LifetecAudio1: public PIRKeysetMetaData
42 {
43 public:
44   LifetecAudio1(
45     unsigned int index);
46
47   virtual void populateProtocol(
48     QObject *guiObject);
49 };
50
51 #endif // LIFETEC_H