High level Bluetooth Low Energy API and radio abstraction layer
Fork of BLE_API by
Revision 806:50c121156a71, committed 2015-09-29
- 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 */ };