aboutsummaryrefslogtreecommitdiff
path: root/lib/jobs/downloadfilejob.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/jobs/downloadfilejob.h')
-rw-r--r--lib/jobs/downloadfilejob.h28
1 files changed, 13 insertions, 15 deletions
diff --git a/lib/jobs/downloadfilejob.h b/lib/jobs/downloadfilejob.h
index ce47ab1c..fd34ba5a 100644
--- a/lib/jobs/downloadfilejob.h
+++ b/lib/jobs/downloadfilejob.h
@@ -2,29 +2,27 @@
#include "csapi/content-repo.h"
-namespace QMatrixClient
-{
+namespace QMatrixClient {
class DownloadFileJob : public GetContentJob
{
public:
- enum { FileError = BaseJob::UserDefinedError + 1 };
+ enum { FileError = BaseJob::UserDefinedError + 1 };
- using GetContentJob::makeRequestUrl;
- static QUrl makeRequestUrl(QUrl baseUrl, const QUrl& mxcUri);
+ using GetContentJob::makeRequestUrl;
+ static QUrl makeRequestUrl(QUrl baseUrl, const QUrl& mxcUri);
- DownloadFileJob(const QString& serverName, const QString& mediaId,
- const QString& localFilename = {});
+ DownloadFileJob(const QString& serverName, const QString& mediaId,
+ const QString& localFilename = {});
- QString targetFileName() const;
+ QString targetFileName() const;
private:
- class Private;
- QScopedPointer<Private> d;
+ class Private;
+ QScopedPointer<Private> d;
- void beforeStart(const ConnectionData*) override;
- void afterStart(const ConnectionData*,
- QNetworkReply* reply) override;
- void beforeAbandon(QNetworkReply*) override;
- Status parseReply(QNetworkReply*) override;
+ void beforeStart(const ConnectionData*) override;
+ void afterStart(const ConnectionData*, QNetworkReply* reply) override;
+ void beforeAbandon(QNetworkReply*) override;
+ Status parseReply(QNetworkReply*) override;
};
}