disallow copy constructor and assignment operators for BLE.

This commit is contained in:
Rohit Grover 2015-09-07 14:10:35 +01:00
parent 4c2aac540d
commit a462757a6c
1 changed files with 4 additions and 0 deletions

View File

@ -1332,6 +1332,10 @@ public:
/* empty */
}
private:
BLE(const BLE&);
BLE &operator=(const BLE &);
private:
BLEInstanceBase *const transport; /* the device specific backend */
};