Browse Source

LV2 specific calls, saving/restore as string.

pull/8/head
falkTX 7 years ago
parent
commit
71b06295da
1 changed files with 5 additions and 0 deletions
  1. +5
    -0
      modules/juce_audio_processors/processors/juce_AudioProcessor.h

+ 5
- 0
modules/juce_audio_processors/processors/juce_AudioProcessor.h View File

@@ -1246,6 +1246,11 @@ public:
/** This method is called when the layout of the audio processor changes. */
virtual void processorLayoutsChanged();
//==============================================================================
/** LV2 specific calls, saving/restore as string. */
virtual String getStateInformationString () { return String::empty; }
virtual void setStateInformationString (const String&) {}
//==============================================================================
/** Adds a listener that will be called when an aspect of this processor changes. */
virtual void addListener (AudioProcessorListener* newListener);


Loading…
Cancel
Save