| 291 | |
| 292 | |
| 293 | void |
| 294 | FlowScene:: |
| 295 | iterateOverNodes(std::function<void(Node*)> const & visitor) |
| 296 | { |
| 297 | for (const auto& _node : _nodes) |
| 298 | { |
| 299 | visitor(_node.second.get()); |
| 300 | } |
| 301 | } |
| 302 | |
| 303 | |
| 304 | void |
nothing calls this directly
no outgoing calls
no test coverage detected