QXmpp Version: 1.5.6
Loading...
Searching...
No Matches
QXmppDialback.h
1// SPDX-FileCopyrightText: 2010 Jeremy Lainé <jeremy.laine@m4x.org>
2//
3// SPDX-License-Identifier: LGPL-2.1-or-later
4
5#ifndef QXMPPDIALBACK_H
6#define QXMPPDIALBACK_H
7
8#include "QXmppStanza.h"
9
14
15class QXMPP_EXPORT QXmppDialback : public QXmppStanza
16{
17public:
19 enum Command {
20 Result,
22 Verify
24 };
25
27
28 Command command() const;
29 void setCommand(Command command);
30
31 QString key() const;
32 void setKey(const QString &key);
33
34 QString type() const;
35 void setType(const QString &type);
36
38 void parse(const QDomElement &element) override;
39 void toXml(QXmlStreamWriter *writer) const override;
40
41 static bool isDialback(const QDomElement &element);
43
44private:
45 Command m_command;
46 QString m_key;
47 QString m_type;
48};
49
50#endif
The QXmppDialback class represents a stanza used for the Server Dialback protocol as specified by XEP...
Definition QXmppDialback.h:16
Command
This enum is used to describe a dialback command.
Definition QXmppDialback.h:19
virtual void parse(const QDomElement &)=0
virtual void toXml(QXmlStreamWriter *writer) const =0
The QXmppStanza class is the base class for all XMPP stanzas.
Definition QXmppStanza.h:88