diff options
Diffstat (limited to 'lib/csapi/voip.h')
-rw-r--r-- | lib/csapi/voip.h | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/lib/csapi/voip.h b/lib/csapi/voip.h new file mode 100644 index 00000000..fafbaf4a --- /dev/null +++ b/lib/csapi/voip.h @@ -0,0 +1,40 @@ +/****************************************************************************** + * THIS FILE IS GENERATED - ANY EDITS WILL BE OVERWRITTEN + */ + +#pragma once + +#include "jobs/basejob.h" + +#include <QtCore/QJsonObject> + +namespace QMatrixClient +{ + // Operations + + class GetTurnServerJob : public BaseJob + { + public: + explicit GetTurnServerJob(); + + /** Construct a URL out of baseUrl and usual parameters passed to + * GetTurnServerJob. This function can be used when + * a URL for GetTurnServerJob is necessary but the job + * itself isn't. + */ + static QUrl makeRequestUrl(QUrl baseUrl); + + ~GetTurnServerJob() override; + + // Result properties + + const QJsonObject& data() const; + + protected: + Status parseJson(const QJsonDocument& data) override; + + private: + class Private; + QScopedPointer<Private> d; + }; +} // namespace QMatrixClient |