aboutsummaryrefslogtreecommitdiff
path: root/lib/networkaccessmanager.h
diff options
context:
space:
mode:
authorAlexey Rusakov <Kitsune-Ral@users.sf.net>2021-09-12 06:16:25 +0200
committerGitHub <noreply@github.com>2021-09-12 06:16:25 +0200
commit41944ac3ee76029201c2108a063ae2b6354f6a22 (patch)
tree661559b8a51868ae54fbb58104ad49ca8900b2de /lib/networkaccessmanager.h
parent9da6b25a26403952e5a76b043076ba302c8d3c30 (diff)
parentbcaab611840a0a2ad284e6f1e7c2f0b4de10222d (diff)
downloadlibquotient-41944ac3ee76029201c2108a063ae2b6354f6a22.tar.gz
libquotient-41944ac3ee76029201c2108a063ae2b6354f6a22.zip
Merge pull request #499 from TobiasFella/mxcnam
Implement the mxc protocol in the NetworkAccessManager
Diffstat (limited to 'lib/networkaccessmanager.h')
-rw-r--r--lib/networkaccessmanager.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/networkaccessmanager.h b/lib/networkaccessmanager.h
index 47729a1b..87bc12a1 100644
--- a/lib/networkaccessmanager.h
+++ b/lib/networkaccessmanager.h
@@ -8,6 +8,8 @@
#include <memory>
namespace Quotient {
+class Room;
+class Connection;
class NetworkAccessManager : public QNetworkAccessManager {
Q_OBJECT
public:
@@ -21,6 +23,9 @@ public:
/** Get a pointer to the singleton */
static NetworkAccessManager* instance();
+public Q_SLOTS:
+ QStringList supportedSchemesImplementation() const;
+
private:
QNetworkReply* createRequest(Operation op, const QNetworkRequest& request,
QIODevice* outgoingData = Q_NULLPTR) override;