| 170 | } |
| 171 | |
| 172 | std::vector<ParamWidget*> ModuleWidget::getParams() { |
| 173 | std::vector<ParamWidget*> pws; |
| 174 | doIfTypeRecursive<ParamWidget>(this, [&](ParamWidget* pw) { |
| 175 | pws.push_back(pw); |
| 176 | }); |
| 177 | return pws; |
| 178 | } |
| 179 | |
| 180 | std::vector<PortWidget*> ModuleWidget::getPorts() { |
| 181 | std::vector<PortWidget*> pws; |
nothing calls this directly
no outgoing calls
no test coverage detected