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

Method GetNodeSpecific

cpp/src/Driver.cpp:4880–4893  ·  view source on GitHub ↗

----------------------------------------------------------------------------- Get the specific type of a node -----------------------------------------------------------------------------

Source from the content-addressed store, hash-verified

4878// Get the specific type of a node
4879//-----------------------------------------------------------------------------
4880uint8 Driver::GetNodeSpecific
4881(
4882 uint8 const _nodeId
4883)
4884{
4885 uint8 specific = 0;
4886 LockGuard LG(m_nodeMutex);
4887 if( Node* node = GetNode( _nodeId ) )
4888 {
4889 specific = node->GetSpecific();
4890 }
4891
4892 return specific;
4893}
4894
4895//-----------------------------------------------------------------------------
4896// <Driver::GetNodeType>

Callers

nothing calls this directly

Calls 1

GetSpecificMethod · 0.80

Tested by

no test coverage detected