blob: 068a7336c51dda15862b24385374123d72f7d24c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#ifndef HTTPTEST_H_
#define HTTPTEST_H_
#include <QNetworkAccessManager>
#include <QUrl>
#include <QNetworkRequest>
#include <QNetworkReply>
class HttpXmlDownloader : public QObject {
Q_OBJECT
QNetworkAccessManager* nam;
public:
HttpXmlDownloader();
QNetworkReply* makeRequest(const QString& xmlurl, const QString& locationIds = QString());
void connectSlot(QObject* obj, const char* slot);
};
#endif /* HTTPTEST_H_ */
|