----------------------------------------------------------------------------- Get whether the node is a beam capable device. -----------------------------------------------------------------------------
| 4726 | // Get whether the node is a beam capable device. |
| 4727 | //----------------------------------------------------------------------------- |
| 4728 | bool Driver::IsNodeBeamingDevice |
| 4729 | ( |
| 4730 | uint8 const _nodeId |
| 4731 | ) |
| 4732 | { |
| 4733 | bool res = false; |
| 4734 | LockGuard LG(m_nodeMutex); |
| 4735 | if( Node* node = GetNode( _nodeId ) ) |
| 4736 | { |
| 4737 | res = node->IsBeamingDevice(); |
| 4738 | } |
| 4739 | |
| 4740 | return res; |
| 4741 | } |
| 4742 | |
| 4743 | //----------------------------------------------------------------------------- |
| 4744 | // <Driver::IsNodeRoutingDevice> |
nothing calls this directly
no test coverage detected