aboutsummaryrefslogtreecommitdiff
path: root/jobs/generated/versions.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'jobs/generated/versions.cpp')
-rw-r--r--jobs/generated/versions.cpp47
1 files changed, 0 insertions, 47 deletions
diff --git a/jobs/generated/versions.cpp b/jobs/generated/versions.cpp
deleted file mode 100644
index b12594ca..00000000
--- a/jobs/generated/versions.cpp
+++ /dev/null
@@ -1,47 +0,0 @@
-/******************************************************************************
- * 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;
-};
-
-QUrl GetVersionsJob::makeRequestUrl(QUrl baseUrl)
-{
- return BaseJob::makeRequestUrl(baseUrl,
- basePath % "/versions");
-}
-
-GetVersionsJob::GetVersionsJob()
- : BaseJob(HttpVerb::Get, "GetVersionsJob",
- basePath % "/versions", false)
- , d(new Private)
-{
-}
-
-GetVersionsJob::~GetVersionsJob() = default;
-
-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;
-}
-