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.
Dependents: BLE_PowerBank_HeyFaradey
Fork of BLE_API by
Diff: ble/BLEInstanceBase.h
- Revision:
- 860:0d41e4eb3d0a
- Parent:
- 858:38a4963a455e
- Child:
- 861:2afa79e3ed0a
diff -r 2a1cb15098ba -r 0d41e4eb3d0a ble/BLEInstanceBase.h
--- a/ble/BLEInstanceBase.h Mon Nov 02 09:09:07 2015 +0000
+++ b/ble/BLEInstanceBase.h Mon Nov 02 09:09:07 2015 +0000
@@ -18,8 +18,6 @@
#define __BLE_DEVICE_INSTANCE_BASE__
#include "Gap.h"
-#include "ble/SecurityManager.h"
-#include "ble/BLE.h"
/* forward declarations */
class GattServer;
@@ -32,18 +30,17 @@
class BLEInstanceBase
{
public:
- virtual ble_error_t init(BLE::InstanceID_t instanceID, BLE::InitializationCompleteCallback_t) = 0;
- virtual bool hasInitialized(void) const = 0;
- virtual ble_error_t shutdown(void) = 0;
- virtual const char * getVersion(void) = 0;
- virtual Gap& getGap() = 0;
- virtual const Gap& getGap() const = 0;
- virtual GattServer& getGattServer() = 0;
- virtual const GattServer& getGattServer() const = 0;
- virtual GattClient& getGattClient() = 0;
- virtual SecurityManager& getSecurityManager() = 0;
+ virtual ble_error_t init(void) = 0;
+ virtual ble_error_t shutdown(void) = 0;
+ virtual const char *getVersion(void) = 0;
+ virtual Gap& getGap() = 0;
+ virtual const Gap& getGap() const = 0;
+ virtual GattServer& getGattServer() = 0;
+ virtual const GattServer& getGattServer() const = 0;
+ virtual GattClient& getGattClient() = 0;
+ virtual SecurityManager& getSecurityManager() = 0;
virtual const SecurityManager& getSecurityManager() const = 0;
- virtual void waitForEvent(void) = 0;
+ virtual void waitForEvent(void) = 0;
};
/**
