16 #ifndef KDSOAPPENDINGCALL_P_H
17 #define KDSOAPPENDINGCALL_P_H
19 #include <QSharedData>
21 #include <QXmlStreamReader>
22 #include "KDSoapMessage.h"
24 #include "KDSoapClientInterface.h"
25 #include <QNetworkReply>
29 void maybeDebugRequest(
const QByteArray &data,
const QNetworkRequest &request, QNetworkReply *reply);
31 class KDSoapPendingCall::Private :
public QSharedData
34 Private(QNetworkReply *r, QBuffer *b)
35 : reply(r), buffer(b), soapVersion(KDSoap::SOAP1_1), parsed(false)
41 KDSoapValue parseReplyElement(QXmlStreamReader &reader);
45 QPointer<QNetworkReply> reply;
49 KDSoap::SoapVersion soapVersion;
53 #endif // KDSOAPPENDINGCALL_P_H