summaryrefslogtreecommitdiffstats
path: root/src/bluetooth/qbluetoothlocaldevice_p.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/bluetooth/qbluetoothlocaldevice_p.h')
-rw-r--r--src/bluetooth/qbluetoothlocaldevice_p.h28
1 files changed, 26 insertions, 2 deletions
diff --git a/src/bluetooth/qbluetoothlocaldevice_p.h b/src/bluetooth/qbluetoothlocaldevice_p.h
index eecc0d1c..acd88083 100644
--- a/src/bluetooth/qbluetoothlocaldevice_p.h
+++ b/src/bluetooth/qbluetoothlocaldevice_p.h
@@ -55,7 +55,7 @@
#include "qbluetoothlocaldevice.h"
-#ifdef QT_BLUEZ_BLUETOOTH
+#if QT_CONFIG(bluez)
#include <QObject>
#include <QDBusContext>
#include <QDBusObjectPath>
@@ -128,7 +128,7 @@ public:
QList<QBluetoothAddress> connectedDevices;
};
-#elif defined(QT_BLUEZ_BLUETOOTH)
+#elif QT_CONFIG(bluez)
class QBluetoothLocalDevicePrivate : public QObject, protected QDBusContext
{
Q_OBJECT
@@ -207,6 +207,30 @@ private:
void initializeAdapter();
void initializeAdapterBluez5();
};
+#elif defined(QT_WINRT_BLUETOOTH)
+class QBluetoothLocalDevicePrivate : public QObject
+{
+public:
+ QBluetoothLocalDevicePrivate(QBluetoothLocalDevice *q,
+ QBluetoothAddress localAddress = QBluetoothAddress())
+ : q_ptr(q)
+ {
+ Q_UNUSED(localAddress);
+ }
+
+ ~QBluetoothLocalDevicePrivate()
+ {
+ }
+
+
+ bool isValid() const
+ {
+ return true;
+ }
+
+private:
+ QBluetoothLocalDevice *q_ptr;
+};
#elif !defined(QT_OSX_BLUETOOTH)
class QBluetoothLocalDevicePrivate : public QObject
{