diff options
author | Tobias Fella <fella@posteo.de> | 2022-04-09 02:04:39 +0200 |
---|---|---|
committer | Tobias Fella <fella@posteo.de> | 2022-04-09 15:52:11 +0200 |
commit | 2af8d83526ed7a24c18b185e1d64d97632e10f1e (patch) | |
tree | 5a5e80ea74d0926685d20c32fdf74c6223290890 /lib/e2ee/qolminboundsession.cpp | |
parent | b0a43c3534865b9fcc1af90ee2c821ac11b2a204 (diff) | |
download | libquotient-2af8d83526ed7a24c18b185e1d64d97632e10f1e.tar.gz libquotient-2af8d83526ed7a24c18b185e1d64d97632e10f1e.zip |
Prepare for MSC 3700
Diffstat (limited to 'lib/e2ee/qolminboundsession.cpp')
-rw-r--r-- | lib/e2ee/qolminboundsession.cpp | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/lib/e2ee/qolminboundsession.cpp b/lib/e2ee/qolminboundsession.cpp index 2e9cc716..60d871ef 100644 --- a/lib/e2ee/qolminboundsession.cpp +++ b/lib/e2ee/qolminboundsession.cpp @@ -149,3 +149,21 @@ bool QOlmInboundGroupSession::isVerified() const { return olm_inbound_group_session_is_verified(m_groupSession) != 0; } + +QString QOlmInboundGroupSession::olmSessionId() const +{ + return m_olmSessionId; +} +void QOlmInboundGroupSession::setOlmSessionId(const QString& olmSessionId) +{ + m_olmSessionId = olmSessionId; +} + +QString QOlmInboundGroupSession::senderId() const +{ + return m_senderId; +} +void QOlmInboundGroupSession::setSenderId(const QString& senderId) +{ + m_senderId = senderId; +} |