add implementation for virtual const Gap &getGap() const
This commit is contained in:
parent
832347de91
commit
872b10f2ec
1 changed files with 3 additions and 0 deletions
|
@ -37,6 +37,9 @@ public:
|
|||
virtual Gap &getGap() {
|
||||
return nRF51Gap::getInstance();
|
||||
};
|
||||
virtual const Gap &getGap() const {
|
||||
return nRF51Gap::getInstance();
|
||||
};
|
||||
virtual GattServer &getGattServer() {
|
||||
return nRF51GattServer::getInstance();
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue