| 509 | } |
| 510 | |
| 511 | void session::add_query_parameter(std::string name, std::string value) |
| 512 | { |
| 513 | if (isFromPool_) |
| 514 | { |
| 515 | pool_->at(poolPosition_).add_query_parameter(std::move(name), std::move(value)); |
| 516 | } |
| 517 | else |
| 518 | { |
| 519 | logger_.add_query_parameter(std::move(name), std::move(value)); |
| 520 | } |
| 521 | } |
| 522 | |
| 523 | std::string session::get_last_query() const |
| 524 | { |
nothing calls this directly
no outgoing calls
no test coverage detected