std::unique_ptr createUi(SpectralAudioPlugin *plugin) override {
| 4 | public: |
| 5 | // std::unique_ptr<ParameterContainerComponent> createUi(SpectralAudioPlugin *plugin) override { |
| 6 | ParameterContainerComponent* createUi(SpectralAudioPlugin *plugin) override { |
| 7 | // return std::make_unique<UiContainer>(m_baseParams, Colour::fromString(TEXT_COLOUR), 30); |
| 8 | return new UiContainer(m_baseParams, Colour::fromString(TEXT_COLOUR), 30); |
| 9 | }; |
| 10 | |
| 11 | std::shared_ptr<PluginParameters> createParams(SpectralAudioPlugin *plugin) override { |
| 12 | m_baseParams = std::make_shared<BaseParameters>(plugin); |
nothing calls this directly
no outgoing calls
no test coverage detected