| 33 | } |
| 34 | |
| 35 | VST3Instance::VST3Instance(const PerTrackEffect& effect, VST3::Hosting::Module& module, const VST3::Hosting::ClassInfo& effectClassInfo) |
| 36 | : Instance(effect) |
| 37 | { |
| 38 | ReloadUserOptions(); |
| 39 | mWrapper = std::make_unique<VST3Wrapper>(module, effectClassInfo); |
| 40 | mWrapper->InitializeComponents(); |
| 41 | } |
| 42 | |
| 43 | VST3Instance::~VST3Instance() = default; |
| 44 |
nothing calls this directly
no test coverage detected