mirror of
https://github.com/robbert-vdh/yabridge.git
synced 2026-06-17 08:53:56 +02:00
Change the naming scheme for class field members
I'm not a fan of Hungarian notation, but C++ kind of needs it with its implicit `this`. And of all the common options for this, I find suffixing members with an underscore the least offensive one.
This commit is contained in:
@@ -43,16 +43,16 @@ class Vst3PluginFactoryProxyImpl : public Vst3PluginFactoryProxy {
|
||||
// The following pointers are cast from `host_context` if
|
||||
// `IPluginFactory3::setHostContext()` has been called
|
||||
|
||||
Steinberg::FUnknownPtr<Steinberg::Vst::IHostApplication> host_application;
|
||||
Steinberg::FUnknownPtr<Steinberg::Vst::IHostApplication> host_application_;
|
||||
Steinberg::FUnknownPtr<Steinberg::Vst::IPlugInterfaceSupport>
|
||||
plug_interface_support;
|
||||
plug_interface_support_;
|
||||
|
||||
private:
|
||||
Vst3PluginBridge& bridge;
|
||||
Vst3PluginBridge& bridge_;
|
||||
|
||||
/**
|
||||
* An host context if we get passed one through
|
||||
* `IPluginFactory3::setHostContext()`.
|
||||
*/
|
||||
Steinberg::IPtr<Steinberg::FUnknown> host_context;
|
||||
Steinberg::IPtr<Steinberg::FUnknown> host_context_;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user