aboutsummaryrefslogtreecommitdiff
path: root/jobs/generated/versions.cpp
diff options
context:
space:
mode:
authorKitsune Ral <Kitsune-Ral@users.sf.net>2017-12-07 11:40:46 +0900
committerKitsune Ral <Kitsune-Ral@users.sf.net>2017-12-07 12:53:02 +0900
commitb1dd0e7ea87842fb5ff9deb14beb3474136b06f3 (patch)
tree1d25030a5355f1e065cfa00272672c9b9cc07b46 /jobs/generated/versions.cpp
parent0c5a042104eaa6f8efb0dfc1c0eacca161d5787f (diff)
downloadlibquotient-b1dd0e7ea87842fb5ff9deb14beb3474136b06f3.tar.gz
libquotient-b1dd0e7ea87842fb5ff9deb14beb3474136b06f3.zip
New generated jobs for: room directory, 3PIDs, redactions, typing notifications and others
Closes #128 (the issue has the full list of jobs arriving herewith).
Diffstat (limited to 'jobs/generated/versions.cpp')
-rw-r--r--jobs/generated/versions.cpp45
1 files changed, 45 insertions, 0 deletions
diff --git a/jobs/generated/versions.cpp b/jobs/generated/versions.cpp
new file mode 100644
index 00000000..66b31290
--- /dev/null
+++ b/jobs/generated/versions.cpp
@@ -0,0 +1,45 @@
+/******************************************************************************
+ * THIS FILE IS GENERATED - ANY EDITS WILL BE OVERWRITTEN
+ */
+
+
+#include "versions.h"
+
+#include "converters.h"
+
+#include <QtCore/QStringBuilder>
+
+using namespace QMatrixClient;
+
+static const auto basePath = QStringLiteral("/_matrix/client");
+
+class GetVersionsJob::Private
+{
+ public:
+ QVector<QString> versions;
+};
+
+GetVersionsJob::GetVersionsJob()
+ : BaseJob(HttpVerb::Get, "GetVersionsJob",
+ basePath % "/versions",
+ Query { }, Data { }, false
+ ), d(new Private)
+{ }
+
+GetVersionsJob::~GetVersionsJob()
+{
+ delete d;
+}
+
+const QVector<QString>& GetVersionsJob::versions() const
+{
+ return d->versions;
+}
+
+BaseJob::Status GetVersionsJob::parseJson(const QJsonDocument& data)
+{
+ auto json = data.object();
+ d->versions = fromJson<QVector<QString>>(json.value("versions"));
+ return Success;
+}
+