-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdevice.cpp
61 lines (47 loc) · 852 Bytes
/
device.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#include "device.h"
Device::Device()
{
}
Device::Device(QString serial, QString idVendor, QString idProduct, QString symlink)
{
this->idProduct=idProduct;
this->idVendor=idVendor;
this->serial=serial;
this->symlink=symlink;
}
QString Device::getSymlink() const
{
return symlink;
}
void Device::setSymlink(const QString &value)
{
symlink = value;
}
bool Device::isVoid()
{
return this->getIdVendor().size()==0;
}
QString Device::getIdProduct() const
{
return idProduct;
}
void Device::setIdProduct(const QString &value)
{
idProduct = value;
}
QString Device::getIdVendor() const
{
return idVendor;
}
void Device::setIdVendor(const QString &value)
{
idVendor = value;
}
QString Device::getSerial() const
{
return serial;
}
void Device::setSerial(const QString &value)
{
serial = value;
}