| 269 | } // strError |
| 270 | |
| 271 | void Uri::Decode(Uri& uri) { |
| 272 | urldecode(uri.QueryString); |
| 273 | urldecode(uri.Path); |
| 274 | urldecode(uri.Host); |
| 275 | urldecode(uri.Username); |
| 276 | urldecode(uri.Password); |
| 277 | } |
| 278 | |
| 279 | Uri Uri::Parse(const std::string& uri) { |
| 280 | Uri result; |
nothing calls this directly
no test coverage detected