Qt
Internal/Contributor docs for the Qt SDK. Note: These are NOT official API docs; those are found at https://doc.qt.io/
Loading...
Searching...
No Matches
qbluetoothservicediscoveryagent_p.cpp
Go to the documentation of this file.
1// Copyright (C) 2016 The Qt Company Ltd.
2// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
3
6#ifndef QT_IOS_BLUETOOTH
7#include "dummy/dummy_helper_p.h"
8#endif
9
11
14 : error(QBluetoothServiceDiscoveryAgent::NoError),
15 state(Inactive),
16 mode(QBluetoothServiceDiscoveryAgent::MinimalDiscovery),
17 singleDevice(false),
18 q_ptr(qp)
19{
20#ifndef QT_IOS_BLUETOOTH
21 printDummyWarning();
22#endif
23 Q_UNUSED(deviceAdapter);
24}
25
27{
28}
29
30void QBluetoothServiceDiscoveryAgentPrivate::start(const QBluetoothAddress &address)
31{
32 Q_UNUSED(address);
33}
34
36{
37}
38
39QT_END_NAMESPACE
40
41#include "moc_qbluetoothservicediscoveryagent_p.cpp"