forked from blue/squawk
24 lines
614 B
C++
24 lines
614 B
C++
/*
|
|
* Created by victoria on 2021-05-13.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "omemo_base.h"
|
|
|
|
namespace QXmpp::Omemo::Variant {
|
|
|
|
class Conversations : public Base {
|
|
public:
|
|
~Conversations() override = default;
|
|
|
|
QXmppElement deviceToXml(const Device &device) override;
|
|
Device deviceFromXml(const QXmppElement &xml) override;
|
|
|
|
QXmppElement deviceListToXml(const DeviceList &deviceList) override;
|
|
DeviceList deviceListFromXml(const QXmppElement &xml) override;
|
|
QXmppIq deviceListSetIq(const DeviceList &deviceList) override;
|
|
};
|
|
|
|
} // namespace QXmpp::Omemo::Variant
|