diff options
author | Carl Schwan <carl@carlschwan.eu> | 2021-01-27 01:43:49 +0100 |
---|---|---|
committer | Tobias Fella <fella@posteo.de> | 2021-12-01 21:34:52 +0100 |
commit | fe2d5dd577a05e4a0e250d89487cd14025204b02 (patch) | |
tree | 4c0d7c1cb68613300a01774e02a346dac334a62e /lib/olm/session.h | |
parent | 57a218086d3c687cd26580ee2a0d2135646411dc (diff) | |
download | libquotient-fe2d5dd577a05e4a0e250d89487cd14025204b02.tar.gz libquotient-fe2d5dd577a05e4a0e250d89487cd14025204b02.zip |
Start adding test for session stuff
Diffstat (limited to 'lib/olm/session.h')
-rw-r--r-- | lib/olm/session.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/olm/session.h b/lib/olm/session.h index e3a52c88..89f5d822 100644 --- a/lib/olm/session.h +++ b/lib/olm/session.h @@ -14,6 +14,8 @@ namespace Quotient { class QOlmAccount; +class QOlmSession; + //! Either an outbound or inbound session for secure communication. class QOlmSession @@ -43,6 +45,8 @@ private: OlmSession* m_session; }; +//using QOlmSessionPtr = std::unique_ptr<QOlmSession>; + } //namespace Quotient #endif // Quotient_E2EE_ENABLED |