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
922B

  1. diff --git a/modules/juce_audio_processors/processors/juce_AudioProcessor.h b/modules/juce_audio_processors/processors/juce_AudioProcessor.h
  2. index 6cfad5d..be9aa3b 100644
  3. --- a/modules/juce_audio_processors/processors/juce_AudioProcessor.h
  4. +++ b/modules/juce_audio_processors/processors/juce_AudioProcessor.h
  5. @@ -652,6 +652,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. virtual void addListener (AudioProcessorListener* newListener);