| 186 | } |
| 187 | |
| 188 | std::vector<PortWidget*> ModuleWidget::getInputs() { |
| 189 | std::vector<PortWidget*> pws; |
| 190 | doIfTypeRecursive<PortWidget>(this, [&](PortWidget* pw) { |
| 191 | if (pw->type == engine::Port::INPUT) |
| 192 | pws.push_back(pw); |
| 193 | }); |
| 194 | return pws; |
| 195 | } |
| 196 | |
| 197 | std::vector<PortWidget*> ModuleWidget::getOutputs() { |
| 198 | std::vector<PortWidget*> pws; |
nothing calls this directly
no outgoing calls
no test coverage detected