improve signatures for copy constructor and assignment operator for GattServer

master
Rohit Grover 2014-11-18 10:08:28 +00:00
parent 3eda3f6fc3
commit 8c33bdd29c
1 changed files with 4 additions and 2 deletions

View File

@ -55,8 +55,10 @@ private:
descriptorCount = 0;
};
nRF51GattServer(nRF51GattServer const &);
void operator=(nRF51GattServer const &);
private:
nRF51GattServer(const nRF51GattServer &);
const nRF51GattServer& operator=(const nRF51GattServer &);
};
#endif