diff options
author | Markus Goetz <Markus.Goetz@nokia.com> | 2011-02-21 11:36:14 (GMT) |
---|---|---|
committer | Markus Goetz <Markus.Goetz@nokia.com> | 2011-02-21 11:39:20 (GMT) |
commit | 0f11fc258915a7e0fc3b95a9d585054427c96f7c (patch) | |
tree | 19c3e17e9f54669cc0caf0b274e9ee3c3b0c39af /src | |
parent | 133ca3a19d43c104b2acc67e11889aad92e78f28 (diff) | |
download | Qt-0f11fc258915a7e0fc3b95a9d585054427c96f7c.zip Qt-0f11fc258915a7e0fc3b95a9d585054427c96f7c.tar.gz Qt-0f11fc258915a7e0fc3b95a9d585054427c96f7c.tar.bz2 |
QNAM HTTP: Fix compilation
Reviewed-by: Olivier Goffart
Diffstat (limited to 'src')
-rw-r--r-- | src/network/access/qhttpthreaddelegate_p.h | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/src/network/access/qhttpthreaddelegate_p.h b/src/network/access/qhttpthreaddelegate_p.h index 7ec8efb..086a35d 100644 --- a/src/network/access/qhttpthreaddelegate_p.h +++ b/src/network/access/qhttpthreaddelegate_p.h @@ -56,24 +56,26 @@ #include <QObject> #include <QThreadStorage> -#include <QAuthenticator> #include <QNetworkProxy> #include <QSslConfiguration> #include <QSslError> #include <QList> #include <QNetworkReply> -#include "qnetworkaccesscache_p.h" #include "qhttpnetworkrequest_p.h" #include "qhttpnetworkconnection_p.h" -#include "qhttpnetworkreply_p.h" -#include "QSharedPointer" +#include <QSharedPointer> #include "qsslconfiguration.h" #include "private/qnoncontiguousbytedevice_p.h" #include "qnetworkaccessauthenticationmanager_p.h" QT_BEGIN_NAMESPACE +class QAuthenticator; +class QHttpNetworkReply; +class QEventLoop; +class QNetworkAccessCache; class QNetworkAccessCachedHttpConnection; + class QHttpThreadDelegate : public QObject { Q_OBJECT |