| 844 | return false; |
| 845 | } |
| 846 | void Help(std::ostream& out) const override |
| 847 | { |
| 848 | if (!IsEnabled()) return; |
| 849 | out << " - " << Name(); |
| 850 | if (parameterDesc.empty()) |
| 851 | PrintDesc<std::vector<std::string>>::Dump(out); |
| 852 | for (auto& s: parameterDesc) |
| 853 | out << " <" << s << '>'; |
| 854 | out << "\n\t" << description << "\n"; |
| 855 | } |
| 856 | |
| 857 | private: |
| 858 |
nothing calls this directly
no outgoing calls
no test coverage detected