diff options
author | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2018-02-27 20:15:48 +0900 |
---|---|---|
committer | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2018-02-27 20:15:48 +0900 |
commit | 292ed58962fb11d6572e273bcb4d2ad762d60365 (patch) | |
tree | de9bc668076bce36184fd24a449d0fe57ca3ee0a /jobs/generated/list_joined_rooms.h | |
parent | dafb0e10a421a36d976d8d8f18fb3aadeaece994 (diff) | |
download | libquotient-292ed58962fb11d6572e273bcb4d2ad762d60365.tar.gz libquotient-292ed58962fb11d6572e273bcb4d2ad762d60365.zip |
jobs/generated: GetJoinedRoomsJob
Diffstat (limited to 'jobs/generated/list_joined_rooms.h')
-rw-r--r-- | jobs/generated/list_joined_rooms.h | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/jobs/generated/list_joined_rooms.h b/jobs/generated/list_joined_rooms.h new file mode 100644 index 00000000..768f5166 --- /dev/null +++ b/jobs/generated/list_joined_rooms.h @@ -0,0 +1,38 @@ +/****************************************************************************** + * THIS FILE IS GENERATED - ANY EDITS WILL BE OVERWRITTEN + */ + +#pragma once + +#include "../basejob.h" + +#include <QtCore/QVector> + + +namespace QMatrixClient +{ + // Operations + + class GetJoinedRoomsJob : public BaseJob + { + public: + /** Construct a URL out of baseUrl and usual parameters passed to + * GetJoinedRoomsJob. This function can be used when + * a URL for GetJoinedRoomsJob is necessary but the job + * itself isn't. + */ + static QUrl makeRequestUrl(QUrl baseUrl); + + explicit GetJoinedRoomsJob(); + ~GetJoinedRoomsJob() override; + + const QVector<QString>& joinedRooms() const; + + protected: + Status parseJson(const QJsonDocument& data) override; + + private: + class Private; + QScopedPointer<Private> d; + }; +} // namespace QMatrixClient |