aboutsummaryrefslogtreecommitdiff
path: root/staging/filterlist/downloadmanager.h
diff options
context:
space:
mode:
Diffstat (limited to 'staging/filterlist/downloadmanager.h')
-rw-r--r--staging/filterlist/downloadmanager.h21
1 files changed, 0 insertions, 21 deletions
diff --git a/staging/filterlist/downloadmanager.h b/staging/filterlist/downloadmanager.h
deleted file mode 100644
index edc011d..0000000
--- a/staging/filterlist/downloadmanager.h
+++ /dev/null
@@ -1,21 +0,0 @@
-/*
- * This file is part of smolbote. It's copyrighted by the contributors recorded
- * in the version control history of the file, available from its original
- * location: https://library.iserlohn-fortress.net/aqua/smolbote.git
- *
- * SPDX-License-Identifier: GPL-3.0
- */
-
-#include <QtNetwork>
-
-class DownloadManager : public QObject
-{
- Q_OBJECT
-
-public:
- DownloadManager(QObject *parent = nullptr);
- QNetworkReply *download(const QUrl &url, const QString &filename = QString());
-
-private:
- QNetworkAccessManager manager;
-};