git subrepo clone (merge) https://github.com/free-audio/clap-helpers.git deps/clap-juce-extensions/clap-libs/clap-helpers
subrepo: subdir: "deps/clap-juce-extensions/clap-libs/clap-helpers" merged: "2bb43c187" upstream: origin: "https://github.com/free-audio/clap-helpers.git" branch: "main" commit: "2bb43c187" git-subrepo: version: "0.4.3" origin: "https://github.com/ingydotnet/git-subrepo.git" commit: "2f68596"
This commit is contained in:
37
deps/clap-juce-extensions/clap-libs/clap-helpers/include/clap/helpers/plugin-proxy.hh
vendored
Normal file
37
deps/clap-juce-extensions/clap-libs/clap-helpers/include/clap/helpers/plugin-proxy.hh
vendored
Normal file
@ -0,0 +1,37 @@
|
||||
#pragma once
|
||||
|
||||
#include "host-proxy.hh"
|
||||
|
||||
namespace clap { namespace helpers {
|
||||
template <MisbehaviourHandler h, CheckingLevel l>
|
||||
class PluginProxy {
|
||||
public:
|
||||
PluginProxy(const clap_host *host, const clap_plugin *plugin);
|
||||
|
||||
void init();
|
||||
|
||||
template <typename T>
|
||||
void getExtension(const T *&ptr, const char *id) noexcept;
|
||||
|
||||
protected:
|
||||
void ensureMainThread(const char *method) const noexcept;
|
||||
void ensureAudioThread(const char *method) const noexcept;
|
||||
|
||||
HostProxy<h, l> _host;
|
||||
const clap_plugin *const _plugin;
|
||||
|
||||
const clap_plugin_params *_pluginParams = nullptr;
|
||||
const clap_plugin_quick_controls *_pluginQuickControls = nullptr;
|
||||
const clap_plugin_audio_ports *_pluginAudioPorts = nullptr;
|
||||
const clap_plugin_gui *_pluginGui = nullptr;
|
||||
const clap_plugin_gui_x11 *_pluginGuiX11 = nullptr;
|
||||
const clap_plugin_gui_win32 *_pluginGuiWin32 = nullptr;
|
||||
const clap_plugin_gui_cocoa *_pluginGuiCocoa = nullptr;
|
||||
const clap_plugin_gui_free_standing *_pluginGuiFreeStanding = nullptr;
|
||||
const clap_plugin_timer_support *_pluginTimerSupport = nullptr;
|
||||
const clap_plugin_fd_support *_pluginFdSupport = nullptr;
|
||||
const clap_plugin_thread_pool *_pluginThreadPool = nullptr;
|
||||
const clap_plugin_preset_load *_pluginPresetLoad = nullptr;
|
||||
const clap_plugin_state *_pluginState = nullptr;
|
||||
};
|
||||
}} // namespace clap::helpers
|
Reference in New Issue
Block a user