Use HttpMetaCache to minimize network use.

This commit is contained in:
Petr Mrázek
2013-09-08 02:15:20 +02:00
parent 6892c11e9f
commit 6bea4ec988
17 changed files with 698 additions and 274 deletions

View File

@ -0,0 +1,24 @@
#pragma once
#include "Download.h"
class ByteArrayDownload: public Download
{
Q_OBJECT
public:
ByteArrayDownload(QUrl url);
public:
/// if not saving to file, downloaded data is placed here
QByteArray m_data;
public slots:
virtual void start();
protected slots:
void downloadProgress(qint64 bytesReceived, qint64 bytesTotal);
void downloadError(QNetworkReply::NetworkError error);
void downloadFinished();
void downloadReadyRead();
};
typedef QSharedPointer<ByteArrayDownload> ByteArrayDownloadPtr;