9#include "dummy/dummy_helper_p.h"
11#define QT_DEVICEDISCOVERY_DEBUG
15QBluetoothDeviceDiscoveryAgentPrivate::QBluetoothDeviceDiscoveryAgentPrivate(
16 const QBluetoothAddress &deviceAdapter,
17 QBluetoothDeviceDiscoveryAgent *parent)
18 : lowEnergySearchTimeout(-1),
21 Q_UNUSED(deviceAdapter);
25QBluetoothDeviceDiscoveryAgentPrivate::~QBluetoothDeviceDiscoveryAgentPrivate()
29bool QBluetoothDeviceDiscoveryAgentPrivate::isActive()
const
34QBluetoothDeviceDiscoveryAgent::DiscoveryMethods QBluetoothDeviceDiscoveryAgent::supportedDiscoveryMethods()
36 return QBluetoothDeviceDiscoveryAgent::NoMethod;
39void QBluetoothDeviceDiscoveryAgentPrivate::start(QBluetoothDeviceDiscoveryAgent::DiscoveryMethods)
41 Q_Q(QBluetoothDeviceDiscoveryAgent);
42 lastError = QBluetoothDeviceDiscoveryAgent::UnsupportedPlatformError;
43 errorString = QBluetoothDeviceDiscoveryAgent::tr(
"Device discovery not supported on this platform");
45 emit q->errorOccurred(lastError);
48void QBluetoothDeviceDiscoveryAgentPrivate::stop()
56#include "moc_qbluetoothdevicediscoveryagent_p.cpp"