Also make the GroupHost plugin type agnostic

This commit is contained in:
Robbert van der Helm
2020-12-02 00:43:04 +01:00
parent 0eb80fe866
commit 3db099e0fc
6 changed files with 32 additions and 15 deletions
+1 -1
View File
@@ -69,7 +69,7 @@ Vst2Bridge& get_bridge_instance(const AEffect* plugin) {
Vst2Bridge::Vst2Bridge(MainContext& main_context,
std::string plugin_dll_path,
std::string endpoint_base_dir)
: vst_plugin_path(plugin_dll_path),
: HostBridge(plugin_dll_path),
main_context(main_context),
plugin_handle(LoadLibrary(plugin_dll_path.c_str()), FreeLibrary),
sockets(main_context.context, endpoint_base_dir, false) {