----------------------------------------------------------------------------- Gets the associations for a group -----------------------------------------------------------------------------
| 2976 | // Gets the associations for a group |
| 2977 | //----------------------------------------------------------------------------- |
| 2978 | uint32 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> |
nothing calls this directly
no outgoing calls
no test coverage detected