Add stubs for a component handler proxy impl

This commit is contained in:
Robbert van der Helm
2020-12-19 14:37:50 +01:00
parent f816b5ad5d
commit 132ba0baeb
7 changed files with 117 additions and 6 deletions
@@ -0,0 +1,44 @@
// yabridge: a Wine VST bridge
// Copyright (C) 2020 Robbert van der Helm
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.
#pragma once
#include "../vst3.h"
class Vst3ComponentHandlerProxyImpl : public Vst3ComponentHandlerProxy {
public:
Vst3ComponentHandlerProxyImpl(
Vst3Bridge& bridge,
Vst3ComponentHandlerProxy::ConstructArgs&& args);
/**
* We'll override the query interface to log queries for interfaces we do
* not (yet) support.
*/
tresult PLUGIN_API queryInterface(const Steinberg::TUID _iid,
void** obj) override;
// From `IComponentHandler`
tresult PLUGIN_API beginEdit(Steinberg::Vst::ParamID id) override;
tresult PLUGIN_API
performEdit(Steinberg::Vst::ParamID id,
Steinberg::Vst::ParamValue valueNormalized) override;
tresult PLUGIN_API endEdit(Steinberg::Vst::ParamID id) override;
tresult PLUGIN_API restartComponent(int32 flags) override;
private:
Vst3Bridge& bridge;
};