| 6 | /////////////////////////////////////////////////////////////////////////////// |
| 7 | |
| 8 | QHttpServer::QHttpServer(QObject *parent) |
| 9 | : QObject(parent), d_ptr(new QHttpServerPrivate) { |
| 10 | } |
| 11 | |
| 12 | QHttpServer::QHttpServer(QHttpServerPrivate &dd, QObject *parent) |
| 13 | : QObject(parent), d_ptr(&dd) { |
nothing calls this directly
no outgoing calls
no test coverage detected