forked from blue/squawk
11 lines
184 B
C++
11 lines
184 B
C++
/*
|
|
* Created by victoria on 2021-05-12.
|
|
*/
|
|
|
|
#include "user_device_list.h"
|
|
|
|
#include <utility>
|
|
|
|
QXmpp::Omemo::UserDeviceList::UserDeviceList(QString jid)
|
|
: jid(std::move(jid)) {}
|