| 682 | |
| 683 | |
| 684 | std::string SingleCommand::GetCommandHelp(unsigned int width) |
| 685 | { |
| 686 | std::stringstream ret; |
| 687 | ret << command << std::setw(width - command.size()) |
| 688 | << " - " << description << std::endl; |
| 689 | return ret.str(); |
| 690 | } |
| 691 | |
| 692 | |
| 693 | std::string SingleCommand::GetOptionsList() |
no test coverage detected