----------------------------------------------------------------------------- Adds a node to an association group -----------------------------------------------------------------------------
| 3067 | // Adds a node to an association group |
| 3068 | //----------------------------------------------------------------------------- |
| 3069 | void Node::AddAssociation |
| 3070 | ( |
| 3071 | uint8 const _groupIdx, |
| 3072 | uint8 const _targetNodeId, |
| 3073 | uint8 const _instance |
| 3074 | ) |
| 3075 | { |
| 3076 | if( Group* group = GetGroup( _groupIdx ) ) |
| 3077 | { |
| 3078 | group->AddAssociation( _targetNodeId, _instance ); |
| 3079 | } |
| 3080 | } |
| 3081 | |
| 3082 | //----------------------------------------------------------------------------- |
| 3083 | // <Node::RemoveAssociation> |