From 5f9db8a3b536845b4c20361fccec8f22faab3f22 Mon Sep 17 00:00:00 2001 From: falkTX Date: Sat, 27 Feb 2021 20:14:18 +0000 Subject: [PATCH] Add lv2 definitions Signed-off-by: falkTX --- .../juce_audio_processors/processors/juce_AudioProcessor.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/modules/juce_audio_processors/processors/juce_AudioProcessor.h b/modules/juce_audio_processors/processors/juce_AudioProcessor.h index f556f12b32..f72a4ed3f0 100644 --- a/modules/juce_audio_processors/processors/juce_AudioProcessor.h +++ b/modules/juce_audio_processors/processors/juce_AudioProcessor.h @@ -1116,6 +1116,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(); } + virtual void setStateInformationString (const String&) {} + //============================================================================== /** Adds a listener that will be called when an aspect of this processor changes. */ virtual void addListener (AudioProcessorListener* newListener); @@ -1200,6 +1205,7 @@ public: wrapperType_AudioUnitv3, wrapperType_RTAS, wrapperType_AAX, + wrapperType_LV2, wrapperType_Standalone, wrapperType_Unity };