author | John Kern <johnk@symbian.org> |
Fri, 13 Aug 2010 15:37:06 -0700 | |
changeset 31 | 7140311376c0 |
parent 17 | cad8819de653 |
permissions | -rw-r--r-- |
17
cad8819de653
adding preliminary code; very much a work in progress; it is too difficult to work on the file system any longer
John Kern <johnk@symbian.org>
parents:
diff
changeset
|
1 |
#ifndef BUFFER_H |
cad8819de653
adding preliminary code; very much a work in progress; it is too difficult to work on the file system any longer
John Kern <johnk@symbian.org>
parents:
diff
changeset
|
2 |
#define BUFFER_H |
cad8819de653
adding preliminary code; very much a work in progress; it is too difficult to work on the file system any longer
John Kern <johnk@symbian.org>
parents:
diff
changeset
|
3 |
|
cad8819de653
adding preliminary code; very much a work in progress; it is too difficult to work on the file system any longer
John Kern <johnk@symbian.org>
parents:
diff
changeset
|
4 |
#include <QObject> |
cad8819de653
adding preliminary code; very much a work in progress; it is too difficult to work on the file system any longer
John Kern <johnk@symbian.org>
parents:
diff
changeset
|
5 |
|
cad8819de653
adding preliminary code; very much a work in progress; it is too difficult to work on the file system any longer
John Kern <johnk@symbian.org>
parents:
diff
changeset
|
6 |
class QNetworkReply; |
cad8819de653
adding preliminary code; very much a work in progress; it is too difficult to work on the file system any longer
John Kern <johnk@symbian.org>
parents:
diff
changeset
|
7 |
|
cad8819de653
adding preliminary code; very much a work in progress; it is too difficult to work on the file system any longer
John Kern <johnk@symbian.org>
parents:
diff
changeset
|
8 |
class Buffer : public QObject |
cad8819de653
adding preliminary code; very much a work in progress; it is too difficult to work on the file system any longer
John Kern <johnk@symbian.org>
parents:
diff
changeset
|
9 |
{ |
cad8819de653
adding preliminary code; very much a work in progress; it is too difficult to work on the file system any longer
John Kern <johnk@symbian.org>
parents:
diff
changeset
|
10 |
Q_OBJECT |
cad8819de653
adding preliminary code; very much a work in progress; it is too difficult to work on the file system any longer
John Kern <johnk@symbian.org>
parents:
diff
changeset
|
11 |
public: |
cad8819de653
adding preliminary code; very much a work in progress; it is too difficult to work on the file system any longer
John Kern <johnk@symbian.org>
parents:
diff
changeset
|
12 |
explicit Buffer(QObject *parent = 0); |
cad8819de653
adding preliminary code; very much a work in progress; it is too difficult to work on the file system any longer
John Kern <johnk@symbian.org>
parents:
diff
changeset
|
13 |
|
cad8819de653
adding preliminary code; very much a work in progress; it is too difficult to work on the file system any longer
John Kern <johnk@symbian.org>
parents:
diff
changeset
|
14 |
signals: |
cad8819de653
adding preliminary code; very much a work in progress; it is too difficult to work on the file system any longer
John Kern <johnk@symbian.org>
parents:
diff
changeset
|
15 |
|
cad8819de653
adding preliminary code; very much a work in progress; it is too difficult to work on the file system any longer
John Kern <johnk@symbian.org>
parents:
diff
changeset
|
16 |
public slots: |
cad8819de653
adding preliminary code; very much a work in progress; it is too difficult to work on the file system any longer
John Kern <johnk@symbian.org>
parents:
diff
changeset
|
17 |
void replyFinished(QNetworkReply *reply); |
cad8819de653
adding preliminary code; very much a work in progress; it is too difficult to work on the file system any longer
John Kern <johnk@symbian.org>
parents:
diff
changeset
|
18 |
|
cad8819de653
adding preliminary code; very much a work in progress; it is too difficult to work on the file system any longer
John Kern <johnk@symbian.org>
parents:
diff
changeset
|
19 |
}; |
cad8819de653
adding preliminary code; very much a work in progress; it is too difficult to work on the file system any longer
John Kern <johnk@symbian.org>
parents:
diff
changeset
|
20 |
|
cad8819de653
adding preliminary code; very much a work in progress; it is too difficult to work on the file system any longer
John Kern <johnk@symbian.org>
parents:
diff
changeset
|
21 |
#endif // BUFFER_H |