| 604 | } |
| 605 | |
| 606 | void ToolUser::NetItem::initNetVersion(NetElementVersion const* version) { |
| 607 | m_netVersion = version; |
| 608 | m_itemDescriptor.initNetVersion(m_netVersion); |
| 609 | if (auto netItem = as<NetElement>(m_item.get())) |
| 610 | netItem->initNetVersion(m_netVersion); |
| 611 | } |
| 612 | |
| 613 | void ToolUser::NetItem::netStore(DataStream& ds, NetCompatibilityRules rules) const { |
| 614 | if (!checkWithRules(rules)) return; |
no test coverage detected