| 3 | namespace bdn::net |
| 4 | { |
| 5 | HTTPRequest::HTTPRequest(std::string requestUrl, DoneHandler requestDoneHandler) |
| 6 | : url(std::move(std::move(requestUrl))), doneHandler(std::move(std::move(requestDoneHandler))) |
| 7 | {} |
| 8 | |
| 9 | HTTPRequest::HTTPRequest(http::Method requestMethod, std::string requestUrl, DoneHandler requestDoneHandler) |
| 10 | : method(requestMethod), url(std::move(std::move(requestUrl))), |
nothing calls this directly
no outgoing calls
no test coverage detected