blob: 1102012b00523e6c032614a1db402b1aa439b6f8 (
plain)
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
|
// Copyright (C) 2013 BlackBerry Limited. All rights reserved.
// Copyright (C) 2017 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
#include <qbluetoothuuid.h>
#include "deviceinfo.h"
DeviceInfo::DeviceInfo(const QBluetoothDeviceInfo &d)
{
device = d;
}
QString DeviceInfo::getAddress() const
{
#ifdef Q_OS_MAC
// On OS X and iOS we do not have addresses,
// only unique UUIDs generated by Core Bluetooth.
return device.deviceUuid().toString();
#else
return device.address().toString();
#endif
}
QString DeviceInfo::getName() const
{
return device.name();
}
QBluetoothDeviceInfo DeviceInfo::getDevice()
{
return device;
}
void DeviceInfo::setDevice(const QBluetoothDeviceInfo &dev)
{
device = QBluetoothDeviceInfo(dev);
Q_EMIT deviceChanged();
}
|