Website updated.
[irwi] / src / irctrl.h
index aee214d..d71983d 100644 (file)
@@ -2,20 +2,27 @@
 #define IRCTRL_H
 
 #include <QObject>
+#include <QString>
+#include <QTimer>
 
 class IrCtrl : public QObject
 {
     Q_OBJECT
+
 public:
-    IrCtrl();
+    explicit IrCtrl(QObject *parent = 0);
+    ~IrCtrl();
 
 public slots:
-    void sendCmd0(bool);
-    void sendCmd1(bool);
-    void sendCmd2(bool);
-    void sendCmd3(bool);
-    void sendCmd4(bool);
-    void sendCmd5(bool);
+    void sendCmd(const QString &cmd);
+
+    void stopLirc();
+private:
+    void startLirc();
+
+private:
+    QTimer m_killLircTimer;
+    static const quint16 LIRC_PORT = 8765;
 };
 
 #endif