Generate and return the usage.
| 1177 | |
| 1178 | /// Generate and return the usage. |
| 1179 | CLI11_NODISCARD std::string get_usage() const { |
| 1180 | return (usage_callback_) ? usage_callback_() + '\n' + usage_ : usage_; |
| 1181 | } |
| 1182 | |
| 1183 | /// Generate and return the footer. |
| 1184 | CLI11_NODISCARD std::string get_footer() const { |
nothing calls this directly
no outgoing calls
no test coverage detected