BeeeOn Gateway  v2020.3.1-2-g6f737dc
Platform to interconnect the IoT world
DPACoordBondNodeResponse.h
1 #pragma once
2 
3 #include "iqrf/DPAResponse.h"
4 
5 namespace BeeeOn {
6 
7 class DPACoordBondNodeResponse final : public DPAResponse {
8 public:
9  typedef Poco::SharedPtr<DPACoordBondNodeResponse> Ptr;
10 
14  NetworkAddress bondedNetworkAddress() const;
15 
19  size_t count() const;
20 };
21 
22 }
size_t count() const
Number of bonded nodes on the coordinator.
Definition: DPACoordBondNodeResponse.cpp:13
NetworkAddress bondedNetworkAddress() const
Returns address of the last bonded node.
Definition: DPACoordBondNodeResponse.cpp:8
Definition: DPACoordBondNodeResponse.h:7
Each response contains a header with:
Definition: DPAResponse.h:20