| 178 | } |
| 179 | |
| 180 | void CountryTree::Node::ForEachChild(CountryTree::Node::NodeCallback const & f) |
| 181 | { |
| 182 | for (auto & child : m_children) |
| 183 | f(*child); |
| 184 | } |
| 185 | |
| 186 | void CountryTree::Node::ForEachChild(CountryTree::Node::NodeCallback const & f) const |
| 187 | { |
no outgoing calls