| 99 | } |
| 100 | |
| 101 | wxString ParametersToString(const std::map<Steinberg::Vst::ParamID, Steinberg::Vst::ParamValue>& params) |
| 102 | { |
| 103 | wxString result; |
| 104 | for(auto& p : params) |
| 105 | result.Append(wxString::Format( |
| 106 | "%lu=%f;", static_cast<unsigned long>(p.first), p.second)); |
| 107 | return result; |
| 108 | } |
| 109 | |
| 110 | VST3EffectSettings& GetSettings(EffectSettings& settings) |
| 111 | { |
no test coverage detected