Unit test for RemoteDBMgr and some stubs
[irwi] / ut / ut_remotedbmgr / qnetworkreply.h
1 #ifndef QNETWORKREPLY_H
2 #define QNETWORKREPLY_H
3 //#define QNETWORKREPLY_H
4
5 #warning("oma headeri")
6
7 #include <QByteArray>
8
9 class QNetworkReply
10 {
11 public:
12     enum NetworkError {
13         NoError = 0
14     };
15
16     QNetworkReply();
17     ~QNetworkReply();
18     QByteArray readAll();
19     int error() const;
20     void close();
21     void deleteLater();
22     QByteArray readLine(qint64 maxlen = 0);
23
24 };
25
26 #endif // QNETWORKREPLY_H
27