aboutsummaryrefslogtreecommitdiff
path: root/lib/csapi/whoami.h
diff options
context:
space:
mode:
authorMarc Deop <marc@marcdeop.com>2019-03-02 12:26:57 +0100
committerMarc Deop <marc@marcdeop.com>2019-03-02 12:26:57 +0100
commitaacc4bcb4a487871daae6717f77605aaba444341 (patch)
tree4f50b6874821667ccb6b91c017e5d041e3846112 /lib/csapi/whoami.h
parentc971b924cd62822ed6fb1a0291c483ae73a3ecda (diff)
downloadlibquotient-aacc4bcb4a487871daae6717f77605aaba444341.tar.gz
libquotient-aacc4bcb4a487871daae6717f77605aaba444341.zip
style: apply .clang-format to all .cpp and .h files
Diffstat (limited to 'lib/csapi/whoami.h')
-rw-r--r--lib/csapi/whoami.h46
1 files changed, 22 insertions, 24 deletions
diff --git a/lib/csapi/whoami.h b/lib/csapi/whoami.h
index 71e9d532..8f191351 100644
--- a/lib/csapi/whoami.h
+++ b/lib/csapi/whoami.h
@@ -6,46 +6,44 @@
#include "jobs/basejob.h"
-
-namespace QMatrixClient
-{
+namespace QMatrixClient {
// Operations
/// Gets information about the owner of an access token.
///
- /// Gets information about the owner of a given access token.
- ///
- /// Note that, as with the rest of the Client-Server API,
- /// Application Services may masquerade as users within their
- /// namespace by giving a ``user_id`` query parameter. In this
+ /// Gets information about the owner of a given access token.
+ ///
+ /// Note that, as with the rest of the Client-Server API,
+ /// Application Services may masquerade as users within their
+ /// namespace by giving a ``user_id`` query parameter. In this
/// situation, the server should verify that the given ``user_id``
- /// is registered by the appservice, and return it in the response
+ /// is registered by the appservice, and return it in the response
/// body.
class GetTokenOwnerJob : public BaseJob
{
public:
- explicit GetTokenOwnerJob();
+ explicit GetTokenOwnerJob();
- /*! Construct a URL without creating a full-fledged job object
- *
- * This function can be used when a URL for
- * GetTokenOwnerJob is necessary but the job
- * itself isn't.
- */
- static QUrl makeRequestUrl(QUrl baseUrl);
+ /*! Construct a URL without creating a full-fledged job object
+ *
+ * This function can be used when a URL for
+ * GetTokenOwnerJob is necessary but the job
+ * itself isn't.
+ */
+ static QUrl makeRequestUrl(QUrl baseUrl);
- ~GetTokenOwnerJob() override;
+ ~GetTokenOwnerJob() override;
- // Result properties
+ // Result properties
- /// The user id that owns the access token.
- const QString& userId() const;
+ /// The user id that owns the access token.
+ const QString& userId() const;
protected:
- Status parseJson(const QJsonDocument& data) override;
+ Status parseJson(const QJsonDocument& data) override;
private:
- class Private;
- QScopedPointer<Private> d;
+ class Private;
+ QScopedPointer<Private> d;
};
} // namespace QMatrixClient