| 29 | |
| 30 | |
| 31 | CommandExecutor::CommandExecutor(std::string command_name, std::vector<std::string> command_args) |
| 32 | : CommandExecutor() |
| 33 | { |
| 34 | this->set_command(std::move(command_name), std::move(command_args)); |
| 35 | } |
| 36 | |
| 37 | |
| 38 |
nothing calls this directly
no test coverage detected