// SPDX-License-Identifier: BSD-2-Clause // This code is part of the sfizz library and is licensed under a BSD 2-clause // license. You should have receive a LICENSE.md file along with the code. // If not, contact the sfizz maintainers at https://github.com/sfztools/sfizz #include "SfizzVstIDs.h" #include "VstPluginDefs.h" #include "public.sdk/source/main/pluginfactory.h" #include "pluginterfaces/vst/ivstcomponent.h" #include "pluginterfaces/vst/ivstaudioprocessor.h" #include "pluginterfaces/vst/ivsteditcontroller.h" class SfizzVstProcessor; class SfizzVstProcessorMulti; class SfizzVstController; BEGIN_FACTORY_DEF(VST3_PLUGIN_VENDOR, VST3_PLUGIN_URL, "mailto:" VST3_PLUGIN_EMAIL) DEF_CLASS2 (INLINE_UID_FROM_FUID(SfizzVstProcessor_cid), PClassInfo::kManyInstances, kVstAudioEffectClass, VST3_PLUGIN_NAME, Vst::kDistributable, Vst::PlugType::kInstrumentSynth, VST3_PLUGIN_VERSION, kVstVersionString, createInstance) DEF_CLASS2 (INLINE_UID_FROM_FUID(SfizzVstProcessorMulti_cid), PClassInfo::kManyInstances, kVstAudioEffectClass, VST3_PLUGIN_NAME "-multi", Vst::kDistributable, Vst::PlugType::kInstrumentSynth, VST3_PLUGIN_VERSION, kVstVersionString, createInstance) DEF_CLASS2 (INLINE_UID_FROM_FUID(SfizzVstController_cid), PClassInfo::kManyInstances, kVstComponentControllerClass, VST3_PLUGIN_NAME, 0, // not used here "", // not used here VST3_PLUGIN_VERSION, kVstVersionString, createInstance) END_FACTORY