MCPcopy Create free account
hub / github.com/OpenZWave/open-zwave / IsNodeBeamingDevice

Method IsNodeBeamingDevice

cpp/src/Driver.cpp:4728–4741  ·  view source on GitHub ↗

----------------------------------------------------------------------------- Get whether the node is a beam capable device. -----------------------------------------------------------------------------

Source from the content-addressed store, hash-verified

4726// Get whether the node is a beam capable device.
4727//-----------------------------------------------------------------------------
4728bool 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>

Callers

nothing calls this directly

Calls 1

IsBeamingDeviceMethod · 0.80

Tested by

no test coverage detected