| 75 | } |
| 76 | |
| 77 | PluginHost::PluginHost(int connectPort) |
| 78 | { |
| 79 | FileNames::InitializePathList(); |
| 80 | InitPreferences(audacity::ApplicationSettings::Call()); |
| 81 | |
| 82 | auto& moduleManager = ModuleManager::Get(); |
| 83 | moduleManager.Initialize(); |
| 84 | moduleManager.DiscoverProviders(); |
| 85 | |
| 86 | mClient = std::make_unique<IPCClient>(connectPort, *this); |
| 87 | } |
| 88 | |
| 89 | void PluginHost::OnConnect(IPCChannel& channel) noexcept |
| 90 | { |
nothing calls this directly
no test coverage detected