| 185 | void setMethod(HttpMethod method) { m_method = method; } |
| 186 | void setVersion(const QString &version) { m_version = version; } |
| 187 | void setUrl(const QUrl &url) { m_url = url; } |
| 188 | void setHeaders(const HeaderHash headers) { m_headers = headers; } |
| 189 | void setSuccessful(bool success) { m_success = success; } |
| 190 |