| 51 | |
| 52 | template<bool Const> |
| 53 | bool CompareAudioCommand::VisitSettings( SettingsVisitorBase<Const> & S ){ |
| 54 | S.Define( errorThreshold, wxT("Threshold"), 0.0f, 0.0f, 0.01f, 1.0f ); |
| 55 | return true; |
| 56 | } |
| 57 | bool CompareAudioCommand::VisitSettings( SettingsVisitor & S ) |
| 58 | { return VisitSettings<false>(S); } |
| 59 |