Added settings dialog
[irwi] / src / irctrl.cpp
1 #include "irctrl.h"
2
3 IrCtrl::IrCtrl()
4 {
5 }
6
7 void IrCtrl::setRemoteName(const QString &newRemoteName)
8 {
9     this->remoteName = newRemoteName;
10 }
11
12 void IrCtrl::sendCmd0(bool)
13 {
14 }
15
16 void IrCtrl::sendCmd1(bool)
17 {
18 }
19
20 void IrCtrl::sendCmd2(bool)
21 {
22 }
23
24 void IrCtrl::sendCmd3(bool)
25 {
26 }
27
28 void IrCtrl::sendCmd4(bool)
29 {
30 }
31
32 void IrCtrl::sendCmd5(bool)
33 {
34 }
35