| 438 | |
| 439 | |
| 440 | std::string URI::getPathAndQuery() const |
| 441 | { |
| 442 | std::string pathAndQuery; |
| 443 | encodePath(pathAndQuery); |
| 444 | if (!_query.empty()) |
| 445 | { |
| 446 | pathAndQuery += '?'; |
| 447 | pathAndQuery += _query; |
| 448 | } |
| 449 | return pathAndQuery; |
| 450 | } |
| 451 | |
| 452 | |
| 453 | void URI::resolve(const std::string& relativeURI) |
no test coverage detected