High level Bluetooth Low Energy API and radio abstraction layer
Fork of BLE_API by
Diff: common/BLEDeviceInstanceBase.h
- Revision:
- 635:ac6647669ef7
- Parent:
- 634:c351328ff134
- Child:
- 645:21ae925832f7
diff -r c351328ff134 -r ac6647669ef7 common/BLEDeviceInstanceBase.h --- a/common/BLEDeviceInstanceBase.h Fri Jun 19 15:52:57 2015 +0100 +++ b/common/BLEDeviceInstanceBase.h Fri Jun 19 15:52:57 2015 +0100 @@ -19,6 +19,7 @@ #include "Gap.h" #include "GattServer.h" +#include "GattClient.h" /** * The interface for the transport object to be created by the target library's @@ -30,6 +31,8 @@ virtual const char *getVersion(void) = 0; virtual Gap& getGap() = 0; virtual GattServer& getGattServer() = 0; + virtual GattClient& getGattClient() = 0; + virtual ble_error_t init(void) = 0; virtual ble_error_t shutdown(void) = 0; virtual ble_error_t reset(void) = 0;