| 9 | }; |
| 10 | |
| 11 | std::shared_ptr<PluginParameters> createParams(SpectralAudioPlugin *plugin) override { |
| 12 | m_baseParams = std::make_shared<BaseParameters>(plugin); |
| 13 | return m_baseParams; |
| 14 | }; |
| 15 | |
| 16 | std::unique_ptr<SpectralAudioProcessorInteractor> createProcessor(SpectralAudioPlugin *plugin) override { |
| 17 | return std::make_unique<BaseProcessor>(SpectralAudioPlugin::FFT_OVERLAPS, m_baseParams); |
nothing calls this directly
no outgoing calls
no test coverage detected