diff options
author | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2018-05-04 19:02:39 +0900 |
---|---|---|
committer | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2018-05-04 20:24:33 +0900 |
commit | c71c4eb027cc7bb3b6b1a9bd41c048fcdfe4aa90 (patch) | |
tree | 892bdcfd58fb31fc088c8e358d79695b16784920 /lib/jobs/generated/joining.h | |
parent | c5b3de1732ca49c78c8ed8cf77f9e9fa414d2f04 (diff) | |
download | libquotient-c71c4eb027cc7bb3b6b1a9bd41c048fcdfe4aa90.tar.gz libquotient-c71c4eb027cc7bb3b6b1a9bd41c048fcdfe4aa90.zip |
jobs/generated: code ordering, more comments
Diffstat (limited to 'lib/jobs/generated/joining.h')
-rw-r--r-- | lib/jobs/generated/joining.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/lib/jobs/generated/joining.h b/lib/jobs/generated/joining.h index 76edb339..7aa3e3a2 100644 --- a/lib/jobs/generated/joining.h +++ b/lib/jobs/generated/joining.h @@ -27,11 +27,13 @@ namespace QMatrixClient QJsonObject signatures; }; - // End of inner data structures + // Construction/destruction explicit JoinRoomByIdJob(const QString& roomId, const ThirdPartySigned& thirdPartySigned = {}); ~JoinRoomByIdJob() override; + // Result properties + const QString& roomId() const; protected: @@ -60,11 +62,13 @@ namespace QMatrixClient Signed signedData; }; - // End of inner data structures + // Construction/destruction explicit JoinRoomJob(const QString& roomIdOrAlias, const ThirdPartySigned& thirdPartySigned = {}); ~JoinRoomJob() override; + // Result properties + const QString& roomId() const; protected: |