----------------------------------------------------------------------------- Change the group contents and notify the watchers -----------------------------------------------------------------------------
| 320 | // Change the group contents and notify the watchers |
| 321 | //----------------------------------------------------------------------------- |
| 322 | void Group::OnGroupChanged |
| 323 | ( |
| 324 | vector<uint8> const& _associations |
| 325 | ) |
| 326 | { |
| 327 | vector<InstanceAssociation> instanceAssociations; |
| 328 | uint8 i; |
| 329 | for( i=0; i<_associations.size(); ++i ) |
| 330 | { |
| 331 | InstanceAssociation association; |
| 332 | association.m_nodeId = _associations[i]; |
| 333 | association.m_instance = 0x00; |
| 334 | instanceAssociations.push_back( association ); |
| 335 | } |
| 336 | OnGroupChanged(instanceAssociations); |
| 337 | instanceAssociations.clear(); |
| 338 | } |
| 339 | |
| 340 | //----------------------------------------------------------------------------- |
| 341 | // <Group::OnGroupChanged> |
no test coverage detected