Add IUnitHandler stubs to component handler proxy

This commit is contained in:
Robbert van der Helm
2020-12-26 14:17:10 +01:00
parent 5e26d30752
commit 934aea3860
4 changed files with 31 additions and 2 deletions
@@ -21,10 +21,13 @@ Vst3ComponentHandlerProxy::ConstructArgs::ConstructArgs() {}
Vst3ComponentHandlerProxy::ConstructArgs::ConstructArgs(
Steinberg::IPtr<Steinberg::FUnknown> object,
size_t owner_instance_id)
: owner_instance_id(owner_instance_id), component_handler_args(object) {}
: owner_instance_id(owner_instance_id),
component_handler_args(object),
unit_handler_args(object) {}
Vst3ComponentHandlerProxy::Vst3ComponentHandlerProxy(const ConstructArgs&& args)
: YaComponentHandler(std::move(args.component_handler_args)),
YaUnitHandler(std::move(args.unit_handler_args)),
arguments(std::move(args)){FUNKNOWN_CTOR}
Vst3ComponentHandlerProxy::~Vst3ComponentHandlerProxy() {
@@ -18,6 +18,7 @@
#include "../common.h"
#include "component-handler/component-handler.h"
#include "component-handler/unit-handler.h"
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wnon-virtual-dtor"
@@ -30,7 +31,8 @@
* by the plugin we are proxying for the `IComponentHandler*` argument passed to
* plugin by the host.
*/
class Vst3ComponentHandlerProxy : public YaComponentHandler {
class Vst3ComponentHandlerProxy : public YaComponentHandler,
public YaUnitHandler {
public:
/**
* These are the arguments for constructing a
@@ -55,11 +57,13 @@ class Vst3ComponentHandlerProxy : public YaComponentHandler {
native_size_t owner_instance_id;
YaComponentHandler::ConstructArgs component_handler_args;
YaUnitHandler::ConstructArgs unit_handler_args;
template <typename S>
void serialize(S& s) {
s.value8b(owner_instance_id);
s.object(component_handler_args);
s.object(unit_handler_args);
}
};