| 446 | } |
| 447 | |
| 448 | CmdBase* find_default() { |
| 449 | for (auto command : _commands) { |
| 450 | if (command->name == "") { |
| 451 | return command; |
| 452 | } |
| 453 | } |
| 454 | |
| 455 | return nullptr; |
| 456 | } |
| 457 | |
| 458 | std::string usage() const { |
| 459 | std::stringstream ss { }; |
nothing calls this directly
no outgoing calls
no test coverage detected