| 6104 | } |
| 6105 | |
| 6106 | auto getHelpColumns() const -> std::vector<HelpColumns> { |
| 6107 | std::vector<HelpColumns> cols; |
| 6108 | for (auto const &o : m_options) { |
| 6109 | auto childCols = o.getHelpColumns(); |
| 6110 | cols.insert(cols.end(), childCols.begin(), childCols.end()); |
| 6111 | } |
| 6112 | return cols; |
| 6113 | } |
| 6114 | |
| 6115 | void writeToStream(std::ostream &os) const { |
| 6116 | if (!m_exeName.name().empty()) { |
nothing calls this directly
no test coverage detected