| 392 | } |
| 393 | |
| 394 | void ContainerObject::getNetStates(bool initial) { |
| 395 | Object::getNetStates(initial); |
| 396 | if (m_itemsNetState.pullUpdated()) { |
| 397 | DataStreamBuffer ds(m_itemsNetState.get()); |
| 398 | m_items->read(ds); |
| 399 | itemsUpdated(); |
| 400 | } |
| 401 | } |
| 402 | |
| 403 | void ContainerObject::setNetStates() { |
| 404 | Object::setNetStates(); |
nothing calls this directly
no test coverage detected