Implement IUnitHandler::notifyUnitSelection

This commit is contained in:
Robbert van der Helm
2020-12-26 14:26:00 +01:00
parent 934aea3860
commit bf40e10780
9 changed files with 54 additions and 8 deletions
+7 -2
View File
@@ -152,11 +152,16 @@ class Vst3PluginProxyImpl : public Vst3PluginProxy {
*/
Vst3PlugViewProxyImpl* last_created_plug_view = nullptr;
// The following pointers are cast from `host_context` if `setHostContext()`
// has been called
// The following pointers are cast from `host_context` if
// `IPluginBase::initialize()` has been called
Steinberg::FUnknownPtr<Steinberg::Vst::IHostApplication> host_application;
// The following pointers are cast from `component_handler` if
// `IEditController::setComponentHandler()` has been called
Steinberg::FUnknownPtr<Steinberg::Vst::IUnitHandler> unit_handler;
private:
Vst3PluginBridge& bridge;