| 22 | } |
| 23 | |
| 24 | void NetElementGroup::netStore(DataStream& ds, NetCompatibilityRules rules) const { |
| 25 | if (!checkWithRules(rules)) return; |
| 26 | for (auto& p : m_elements) |
| 27 | if (p.first->checkWithRules(rules)) |
| 28 | p.first->netStore(ds, rules); |
| 29 | } |
| 30 | |
| 31 | void NetElementGroup::netLoad(DataStream& ds, NetCompatibilityRules rules) { |
| 32 | if (!checkWithRules(rules)) return; |
nothing calls this directly
no test coverage detected