mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-23 19:38:48 +03:00
15 lines
369 B
C++
15 lines
369 B
C++
// SPDX-FileCopyrightText: Nheko Contributors
|
|
//
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
#include "CacheCryptoStructs.h"
|
|
|
|
#include <mtx/events/encrypted.hpp>
|
|
|
|
MegolmSessionIndex::MegolmSessionIndex(std::string room_id_, const mtx::events::msg::Encrypted &e)
|
|
: room_id(std::move(room_id_))
|
|
, session_id(e.session_id)
|
|
{
|
|
}
|
|
|
|
#include "moc_CacheCryptoStructs.cpp"
|