----------------------------------------------------------------------------- Adds a node to an association group -----------------------------------------------------------------------------
| 6170 | // Adds a node to an association group |
| 6171 | //----------------------------------------------------------------------------- |
| 6172 | void Driver::AddAssociation |
| 6173 | ( |
| 6174 | uint8 const _nodeId, |
| 6175 | uint8 const _groupIdx, |
| 6176 | uint8 const _targetNodeId, |
| 6177 | uint8 const _instance |
| 6178 | ) |
| 6179 | { |
| 6180 | LockGuard LG(m_nodeMutex); |
| 6181 | if( Node* node = GetNode( _nodeId ) ) |
| 6182 | { |
| 6183 | node->AddAssociation( _groupIdx, _targetNodeId, _instance ); |
| 6184 | } |
| 6185 | } |
| 6186 | |
| 6187 | //----------------------------------------------------------------------------- |
| 6188 | // <Driver::RemoveAssociation> |
nothing calls this directly
no outgoing calls
no test coverage detected