summaryrefslogtreecommitdiffstats
path: root/src/bluetooth/osx/osxbtnotifier_p.h
diff options
context:
space:
mode:
authorTimur Pocheptsov <timur.pocheptsov@theqtcompany.com>2016-02-07 13:02:34 +0100
committerTimur Pocheptsov <timur.pocheptsov@theqtcompany.com>2016-03-13 11:56:46 +0000
commitf51643a314af54400301bcb687829e258a857ac3 (patch)
tree911926af78e9e0db0e28a6c9a66aed8db8d1cf71 /src/bluetooth/osx/osxbtnotifier_p.h
parent51e32a9f7972e31e65bccf36caa238ac245091e0 (diff)
Add peripheral role (iOS/OS X).
CoreBluetooth has CBPeripheralManager/CBMutableService both on iOS (since 6.0) and OS X (>= 10.9). This lets me implement the Qt's BTLE 'advertisement' API and peripheral role for both iOS and OS X. Change-Id: I3e69a5870535a45bc16bbd9862ca84300b01daca Reviewed-by: Timur Pocheptsov <timur.pocheptsov@theqtcompany.com>
Diffstat (limited to 'src/bluetooth/osx/osxbtnotifier_p.h')
-rw-r--r--src/bluetooth/osx/osxbtnotifier_p.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/bluetooth/osx/osxbtnotifier_p.h b/src/bluetooth/osx/osxbtnotifier_p.h
index 6cb2b019..3059e2d3 100644
--- a/src/bluetooth/osx/osxbtnotifier_p.h
+++ b/src/bluetooth/osx/osxbtnotifier_p.h
@@ -68,7 +68,7 @@ class QLowEnergyServicePrivate;
namespace OSXBluetooth
{
-class LECentralNotifier : public QObject
+class LECBManagerNotifier : public QObject
{
Q_OBJECT
@@ -85,9 +85,9 @@ Q_SIGNALS:
void descriptorWritten(QLowEnergyHandle descHandle, const QByteArray &value);
void LEnotSupported();
- void CBCentralManagerError(QLowEnergyController::Error error);
- void CBCentralManagerError(const QBluetoothUuid &serviceUuid, QLowEnergyController::Error error);
- void CBCentralManagerError(const QBluetoothUuid &serviceUuid, QLowEnergyService::ServiceError error);
+ void CBManagerError(QLowEnergyController::Error error);
+ void CBManagerError(const QBluetoothUuid &serviceUuid, QLowEnergyController::Error error);
+ void CBManagerError(const QBluetoothUuid &serviceUuid, QLowEnergyService::ServiceError error);
};