X-Git-Url: https://vcs.maemo.org/git/?a=blobdiff_plain;f=ut%2Fut_remotedbmgr%2Fqnetworkreply.h;fp=ut%2Fut_remotedbmgr%2Fqnetworkreply.h;h=3d3d85b39cb212898547b68383013a7045a23563;hb=7a63d12e6e02600ec30205f9004f3766733dd244;hp=0000000000000000000000000000000000000000;hpb=f047529344affacc12ead75339721954f18009e0;p=irwi diff --git a/ut/ut_remotedbmgr/qnetworkreply.h b/ut/ut_remotedbmgr/qnetworkreply.h new file mode 100644 index 0000000..3d3d85b --- /dev/null +++ b/ut/ut_remotedbmgr/qnetworkreply.h @@ -0,0 +1,27 @@ +#ifndef QNETWORKREPLY_H +#define QNETWORKREPLY_H +//#define QNETWORKREPLY_H + +#warning("oma headeri") + +#include + +class QNetworkReply +{ +public: + enum NetworkError { + NoError = 0 + }; + + QNetworkReply(); + ~QNetworkReply(); + QByteArray readAll(); + int error() const; + void close(); + void deleteLater(); + QByteArray readLine(qint64 maxlen = 0); + +}; + +#endif // QNETWORKREPLY_H +