fixed circular reference

This commit is contained in:
Alex Birch
2018-04-10 01:17:50 +01:00
parent 27b9dfb9df
commit 9427a029b9
6 changed files with 46 additions and 11 deletions

View File

@ -254,6 +254,14 @@ FluidSynthModel* JuicySFAudioProcessor::getFluidSynthModel() {
return &fluidSynthModel;
}
void JuicySFAudioProcessor::setSoundFontPath(const String& value) {
soundFontPath = value;
}
String& JuicySFAudioProcessor::getSoundFontPath() {
return soundFontPath;
}
//==============================================================================
// This creates new instances of the plugin..
AudioProcessor* JUCE_CALLTYPE createPluginFilter()