| 118 | } |
| 119 | |
| 120 | StringBox Argument::getFullDescription() const { |
| 121 | if (_description.empty()) { |
| 122 | return _name; |
| 123 | } |
| 124 | |
| 125 | return STRING_FORMAT("{} {}", _name, _description); |
| 126 | } |
| 127 | |
| 128 | ArgumentsParser::ArgumentsParser() = default; |
| 129 | ArgumentsParser::~ArgumentsParser() = default; |
no test coverage detected