| 89 | } |
| 90 | |
| 91 | bool CommandHandlerRepository::IsValidCommand(const std::string& command_name) { |
| 92 | CommandHandlerMap::const_iterator found_iterator = |
| 93 | this->command_handlers_.find(command_name); |
| 94 | |
| 95 | return found_iterator != this->command_handlers_.end(); |
| 96 | } |
| 97 | |
| 98 | CommandHandlerHandle CommandHandlerRepository::GetCommandHandler(const std::string& command_name) { |
| 99 | CommandHandlerMap::const_iterator found_iterator = |
no test coverage detected