----------------------------------------------------------------------------- Get whether the node is a beam capable device. -----------------------------------------------------------------------------
| 939 | // Get whether the node is a beam capable device. |
| 940 | //----------------------------------------------------------------------------- |
| 941 | bool Manager::IsNodeBeamingDevice |
| 942 | ( |
| 943 | uint32 const _homeId, |
| 944 | uint8 const _nodeId |
| 945 | ) |
| 946 | { |
| 947 | bool res = false; |
| 948 | if( Driver* driver = GetDriver( _homeId ) ) |
| 949 | { |
| 950 | res = driver->IsNodeBeamingDevice( _nodeId ); |
| 951 | } |
| 952 | |
| 953 | return res; |
| 954 | } |
| 955 | |
| 956 | //----------------------------------------------------------------------------- |
| 957 | // <Manager::IsNodeRoutingDevice> |
nothing calls this directly
no outgoing calls
no test coverage detected