| 434 | } |
| 435 | |
| 436 | juce::StringArray DspNetwork::getFactoryList() const |
| 437 | { |
| 438 | StringArray sa; |
| 439 | |
| 440 | for (auto nf : nodeFactories) |
| 441 | { |
| 442 | if (nf->getModuleList().isEmpty()) |
| 443 | continue; |
| 444 | |
| 445 | sa.add(nf->getId().toString()); |
| 446 | } |
| 447 | |
| 448 | |
| 449 | return sa; |
| 450 | } |
| 451 | |
| 452 | var DspNetwork::getAssignedValue(int index) const |
| 453 | { |