| 202 | |
| 203 | |
| 204 | void |
| 205 | Node:: |
| 206 | onDataUpdated(PortIndex index) |
| 207 | { |
| 208 | auto nodeData = _nodeDataModel->outData(index); |
| 209 | |
| 210 | auto connections = |
| 211 | _nodeState.connections(PortType::Out, index); |
| 212 | |
| 213 | for (auto const & c : connections) |
| 214 | c.second->propagateData(nodeData); |
| 215 | } |
| 216 | |
| 217 | void |
| 218 | Node:: |