| 89 | } |
| 90 | |
| 91 | bool UriInfo::HasHttpVerb(const std::string& http_verb, |
| 92 | std::string* command_name) { |
| 93 | HttpVerbMap::const_iterator verb_iterator = this->verb_map_.find(http_verb); |
| 94 | if (verb_iterator != this->verb_map_.end()) { |
| 95 | *command_name = verb_iterator->second; |
| 96 | return true; |
| 97 | } |
| 98 | return false; |
| 99 | } |
| 100 | |
| 101 | void UriInfo::AddHttpVerb(const std::string& http_verb, |
| 102 | const std::string& command_name) { |
no test coverage detected