Added settings dialog
[irwi] / src / irctrl.h
1 #ifndef IRCTRL_H
2 #define IRCTRL_H
3
4 #include <QObject>
5 #include <QString>
6
7 class IrCtrl : public QObject
8 {
9     Q_OBJECT
10 public:
11     IrCtrl();
12
13     void setRemoteName(const QString &newRemoteName);
14
15 public slots:
16     void sendCmd0(bool);
17     void sendCmd1(bool);
18     void sendCmd2(bool);
19     void sendCmd3(bool);
20     void sendCmd4(bool);
21     void sendCmd5(bool);
22
23 private:
24     QString remoteName;
25 };
26
27 #endif
28