| 12 | using QtNodes::Connection; |
| 13 | |
| 14 | NodeState:: |
| 15 | NodeState(std::unique_ptr<NodeDataModel> const &model) |
| 16 | : _inConnections(model->nPorts(PortType::In)) |
| 17 | , _outConnections(model->nPorts(PortType::Out)) |
| 18 | , _reaction(NOT_REACTING) |
| 19 | , _reactingPortType(PortType::None) |
| 20 | , _resizing(false) |
| 21 | {} |
| 22 | |
| 23 | |
| 24 | std::vector<NodeState::ConnectionPtrSet> const & |