From d80ba10f066d096d07b49a193a79f1571ff90654 Mon Sep 17 00:00:00 2001 From: Robbert van der Helm Date: Sat, 12 Dec 2020 16:04:35 +0100 Subject: [PATCH] Interleave structs with their related functions Might make it a bit more organized when this is fully implemented. --- src/common/serialization/vst3/component.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/common/serialization/vst3/component.h b/src/common/serialization/vst3/component.h index ed9b9781..0c7e7ade 100644 --- a/src/common/serialization/vst3/component.h +++ b/src/common/serialization/vst3/component.h @@ -94,6 +94,12 @@ class YaComponent : public Steinberg::Vst::IComponent { } }; + /** + * Instantiate this instance with arguments read from another interface + * implementation. + */ + YaComponent(const CreateArgs&& args); + /** * Message to request the Wine plugin host to destroy the IComponent * instance with the given instance ID. Sent from the destructor of @@ -110,12 +116,6 @@ class YaComponent : public Steinberg::Vst::IComponent { } }; - /** - * Instantiate this instance with arguments read from another interface - * implementation. - */ - YaComponent(const CreateArgs&& args); - /** * @remark The plugin side implementation should send a control message to * clean up the instance on the Wine side in its destructor.