Fixes
[irwi] / src / irctrl.h
1 #ifndef IRCTRL_H
2 #define IRCTRL_H
3
4 #include <QObject>
5
6 class IrCtrl : public QObject
7 {
8     Q_OBJECT
9 public:
10     IrCtrl();
11
12 public slots:
13     void sendCmd0(bool);
14     void sendCmd1(bool);
15     void sendCmd2(bool);
16     void sendCmd3(bool);
17     void sendCmd4(bool);
18     void sendCmd5(bool);
19 };
20
21 #endif
22