Random changes
[irwi] / src / irctrl.cpp
1 #include "irctrl.h"
2 #include <cstdlib>
3
4 IrCtrl::IrCtrl()
5 {
6     std::system("./lircctl start");
7 }
8
9 IrCtrl::~IrCtrl()
10 {
11     std::system("./lircctl stop");
12 }
13
14 void IrCtrl::setRemoteName(const QString &newRemoteName)
15 {
16     this->remoteName = newRemoteName;
17 }
18
19 void IrCtrl::sendCmd0(bool)
20 {
21 }
22
23 void IrCtrl::sendCmd1(bool)
24 {
25 }
26
27 void IrCtrl::sendCmd2(bool)
28 {
29 }
30
31 void IrCtrl::sendCmd3(bool)
32 {
33 }
34
35 void IrCtrl::sendCmd4(bool)
36 {
37 }
38
39 void IrCtrl::sendCmd5(bool)
40 {
41 }
42