//////////////////////////////////////////////////////////////////////////
| 5 | namespace server { |
| 6 | /////////////////////////////////////////////////////////////////////////////// |
| 7 | QHttpResponse::QHttpResponse(QHttpConnection* conn) |
| 8 | : QHttpAbstractOutput(conn) , d_ptr(new QHttpResponsePrivate(conn, this)) { |
| 9 | d_ptr->initialize(); |
| 10 | QHTTP_LINE_LOG |
| 11 | } |
| 12 | |
| 13 | QHttpResponse::QHttpResponse(QHttpResponsePrivate& dd, QHttpConnection* conn) |
| 14 | : QHttpAbstractOutput(conn) , d_ptr(&dd) { |
nothing calls this directly
no test coverage detected