You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
919B

  1. diff --git a/modules/juce_audio_processors/processors/juce_AudioProcessor.h b/modules/juce_audio_processors/processors/juce_AudioProcessor.h
  2. index 76ac472..c014ae2 100644
  3. --- a/modules/juce_audio_processors/processors/juce_AudioProcessor.h
  4. +++ b/modules/juce_audio_processors/processors/juce_AudioProcessor.h
  5. @@ -551,6 +551,11 @@ public:
  6. virtual void numChannelsChanged();
  7. //==============================================================================
  8. + /** LV2 specific calls, saving/restore as string. */
  9. + virtual String getStateInformationString () { return String::empty; }
  10. + virtual void setStateInformationString (const String&) {}
  11. +
  12. + //==============================================================================
  13. /** Adds a listener that will be called when an aspect of this processor changes. */
  14. void addListener (AudioProcessorListener* newListener);