diff options
| author | Jeremy Lainé <jeremy.laine@m4x.org> | 2012-09-12 13:54:12 +0200 |
|---|---|---|
| committer | Jeremy Lainé <jeremy.laine@m4x.org> | 2012-09-12 13:54:12 +0200 |
| commit | 80f977677d9cc579ad957a91e8f4931176526d80 (patch) | |
| tree | 2873ddeb3e8c3b9439fac5a1a4fe4945b7f13608 /src/base/QXmppMessage.h | |
| parent | 8c743b33c7baccd4910b68acdee6d2b8dccd6642 (diff) | |
| download | qxmpp-80f977677d9cc579ad957a91e8f4931176526d80.tar.gz | |
explicitly parse XEP-0249: Direct MUC Invitations message attributes
Diffstat (limited to 'src/base/QXmppMessage.h')
| -rw-r--r-- | src/base/QXmppMessage.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/base/QXmppMessage.h b/src/base/QXmppMessage.h index c0ac487a..e864a20f 100644 --- a/src/base/QXmppMessage.h +++ b/src/base/QXmppMessage.h @@ -76,6 +76,15 @@ public: bool isReceiptRequested() const; void setReceiptRequested(bool requested); + QString mucInvitationJid() const; + void setMucInvitationJid(const QString &jid); + + QString mucInvitationPassword() const; + void setMucInvitationPassword(const QString &password); + + QString mucInvitationReason() const; + void setMucInvitationReason(const QString &reason); + QString receiptId() const; void setReceiptId(const QString &id); |
