mirror of
https://github.com/robbert-vdh/yabridge.git
synced 2026-05-14 20:40:03 +02:00
Bundle associated messages with their interfaces
Once we start implementing all of the control messages/callbacks things could quickly get out of hand otherwise.
This commit is contained in:
@@ -24,7 +24,7 @@
|
||||
|
||||
Vst3Logger::Vst3Logger(Logger& generic_logger) : logger(generic_logger) {}
|
||||
|
||||
void Vst3Logger::log_request(bool is_host_vst, const CreateInstaneIComponent&) {
|
||||
void Vst3Logger::log_request(bool is_host_vst, const YaComponent::Create&) {
|
||||
if (BOOST_UNLIKELY(logger.verbosity >= Logger::Verbosity::most_events)) {
|
||||
std::ostringstream message;
|
||||
// TODO: Log the cid in some readable way, if possible
|
||||
|
||||
@@ -45,7 +45,7 @@ class Vst3Logger {
|
||||
// flag here indicates whether the request was initiated on the host side
|
||||
// (what we'll call a control message).
|
||||
|
||||
void log_request(bool is_host_vst, const CreateInstaneIComponent&);
|
||||
void log_request(bool is_host_vst, const YaComponent::Create&);
|
||||
void log_request(bool is_host_vst, const WantsConfiguration&);
|
||||
void log_request(bool is_host_vst, const WantsPluginFactory&);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user