add implementation for BLEInstanceBase::getGattServer() const

master
Rohit Grover 2015-06-18 21:23:08 +01:00
parent b70f93d351
commit 35e13e5497
1 changed files with 3 additions and 0 deletions

View File

@ -43,6 +43,9 @@ public:
virtual GattServer &getGattServer() {
return nRF51GattServer::getInstance();
};
virtual const GattServer &getGattServer() const {
return nRF51GattServer::getInstance();
};
virtual GattClient &getGattClient() {
return nRF51GattClient::getInstance();
}