diff options
Diffstat (limited to 'src/QXmppDialback.h')
| -rw-r--r-- | src/QXmppDialback.h | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/QXmppDialback.h b/src/QXmppDialback.h index 183c3913..8fb0bde6 100644 --- a/src/QXmppDialback.h +++ b/src/QXmppDialback.h @@ -34,9 +34,12 @@ class QXmppDialback : public QXmppStanza { public: + /// This enum is used to describe a dialback command. enum Command { - Result, - Verify, + Result, ///< A dialback command between the originating server + ///< and the receiving server. + Verify, ///< A dialback command between the receiving server + ///< and the authoritative server. }; QXmppDialback(); @@ -53,9 +56,9 @@ public: /// \cond void parse(const QDomElement &element); void toXml(QXmlStreamWriter *writer) const; - /// \endcond static bool isDialback(const QDomElement &element); + /// \endcond private: Command m_command; |
