CharacteristicCallback_t should take a pointer instead of a reference
This commit is contained in:
parent
a5eeb92a05
commit
aedbcb6bfa
1 changed files with 1 additions and 1 deletions
|
@ -26,7 +26,7 @@
|
|||
class ServiceDiscovery {
|
||||
public:
|
||||
typedef void (*ServiceCallback_t)(const DiscoveredService &);
|
||||
typedef void (*CharacteristicCallback_t)(const DiscoveredCharacteristic &);
|
||||
typedef void (*CharacteristicCallback_t)(const DiscoveredCharacteristic *);
|
||||
typedef void (*TerminationCallback_t)(Gap::Handle_t connectionHandle);
|
||||
|
||||
public:
|
||||
|
|
Loading…
Reference in a new issue