Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of BLE_API by
Diff: ble/DiscoveredCharacteristicDescriptor.h
- Revision:
- 1067:350b4b04eeda
- Parent:
- 1044:15e4bd5951ac
- Child:
- 1068:704b281b4ba0
--- a/ble/DiscoveredCharacteristicDescriptor.h Mon Jan 11 08:51:39 2016 +0000 +++ b/ble/DiscoveredCharacteristicDescriptor.h Mon Jan 11 08:51:39 2016 +0000 @@ -25,22 +25,22 @@ /** - * + * */ class DiscoveredCharacteristicDescriptor { public: DiscoveredCharacteristicDescriptor( - GattClient* client, Gap::Handle_t connectionHandle, GattAttribute::Handle_t gattHandle, const UUID& uuid) : + GattClient* client, Gap::Handle_t connectionHandle, GattAttribute::Handle_t gattHandle, const UUID& uuid) : _client(client), _connectionHandle(connectionHandle), _uuid(uuid), _gattHandle(gattHandle) { } - GattClient* client() { + GattClient* client() { return _client; } - const GattClient* client() const { + const GattClient* client() const { return _client; }