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

Method GetAssociations

cpp/src/Node.cpp:2978–2991  ·  view source on GitHub ↗

----------------------------------------------------------------------------- Gets the associations for a group -----------------------------------------------------------------------------

Source from the content-addressed store, hash-verified

2976// Gets the associations for a group
2977//-----------------------------------------------------------------------------
2978uint32 Node::GetAssociations
2979(
2980 uint8 const _groupIdx,
2981 uint8** o_associations
2982)
2983{
2984 uint32 numAssociations = 0;
2985 if( Group* group = GetGroup( _groupIdx ) )
2986 {
2987 numAssociations = group->GetAssociations( o_associations );
2988 }
2989
2990 return numAssociations;
2991}
2992
2993//-----------------------------------------------------------------------------
2994// <Node::GetAssociations>

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected