High level Bluetooth Low Energy API and radio abstraction layer

Dependencies:   nRF51822

Dependents:   LinkNode_LIS3DH

Fork of BLE_API by Bluetooth Low Energy

Files at this revision

API Documentation at this revision

Comitter:
rgrover1
Date:
Tue Sep 29 09:47:51 2015 +0100
Parent:
805:de2feb3e6e41
Child:
807:d119f9333581
Commit message:
Synchronized with git rev a462757a
Author: Rohit Grover
disallow copy constructor and assignment operators for BLE.

Changed in this revision

ble/BLE.h Show annotated file Show diff for this revision Revisions of this file
--- a/ble/BLE.h	Tue Sep 29 09:47:51 2015 +0100
+++ b/ble/BLE.h	Tue Sep 29 09:47:51 2015 +0100
@@ -1333,6 +1333,10 @@
     }
 
 private:
+    BLE(const BLE&);
+    BLE &operator=(const BLE &);
+
+private:
     BLEInstanceBase *const transport; /* the device specific backend */
 };