squawk/qomemo/variant/conversations.h

24 lines
614 B
C
Raw Normal View History

2021-05-12 21:32:13 +00:00
/*
* Created by victoria on 2021-05-13.
*/
#pragma once
#include "omemo_base.h"
namespace QXmpp::Omemo::Variant {
2021-05-13 14:54:37 +00:00
class Conversations : public Base {
public:
~Conversations() override = default;
2021-05-12 21:32:13 +00:00
2021-05-13 14:54:37 +00:00
QXmppElement deviceToXml(const Device &device) override;
Device deviceFromXml(const QXmppElement &xml) override;
2021-05-12 21:32:13 +00:00
2021-05-13 14:54:37 +00:00
QXmppElement deviceListToXml(const DeviceList &deviceList) override;
DeviceList deviceListFromXml(const QXmppElement &xml) override;
QXmppIq deviceListSetIq(const DeviceList &deviceList) override;
};
2021-05-12 21:32:13 +00:00
} // namespace QXmpp::Omemo::Variant