| 762 | } |
| 763 | |
| 764 | juce::ReferenceCountedObject* ScriptModulationMatrix::getSourceCable(const String& id) const |
| 765 | { |
| 766 | auto index = getSourceIndex(id); |
| 767 | |
| 768 | if (isPositiveAndBelow(index, sourceData.size())) |
| 769 | return sourceData[index]->cable.get(); |
| 770 | |
| 771 | return nullptr; |
| 772 | } |
| 773 | |
| 774 | ScriptModulationMatrix::TargetDataBase::TargetDataBase(ScriptModulationMatrix* p, const var& json, bool isMod_) : |
| 775 | SimpleTimer(p->getMainController()->getGlobalUIUpdater()), |
no test coverage detected