| 57 | |
| 58 | template<bool Const> |
| 59 | bool HelpCommand::VisitSettings( SettingsVisitorBase<Const> & S ){ |
| 60 | S.Define( mCommandName, wxT("Command"), wxString{"Help"} ); |
| 61 | S.DefineEnum( mFormat, wxT("Format"), 0, kFormats, nFormats ); |
| 62 | return true; |
| 63 | } |
| 64 | bool HelpCommand::VisitSettings( SettingsVisitor & S ) |
| 65 | { return VisitSettings<false>(S); } |
| 66 |
nothing calls this directly
no test coverage detected