diff options
| author | Linus Jahn <lnj@kaidan.im> | 2021-04-02 17:35:59 +0200 |
|---|---|---|
| committer | Linus Jahn <lnj@kaidan.im> | 2021-04-06 15:47:48 +0200 |
| commit | d2633da630ccc32d791f69e10744758a8c177128 (patch) | |
| tree | 17860f4172e8311c1d67481a6daa9761602cb38f /src/base/QXmppMixItem.h | |
| parent | 93033e9e431e999e9b52dc24cae2170518b685d2 (diff) | |
| download | qxmpp-d2633da630ccc32d791f69e10744758a8c177128.tar.gz | |
doc: Fix warnings from Mix classes
Diffstat (limited to 'src/base/QXmppMixItem.h')
| -rw-r--r-- | src/base/QXmppMixItem.h | 20 |
1 files changed, 4 insertions, 16 deletions
diff --git a/src/base/QXmppMixItem.h b/src/base/QXmppMixItem.h index 095952f3..0154e904 100644 --- a/src/base/QXmppMixItem.h +++ b/src/base/QXmppMixItem.h @@ -31,14 +31,6 @@ class QXmppMixInfoItemPrivate; class QXmppMixParticipantItemPrivate; -/// \brief The QXmppMixInfoItem class represents a PubSub item of a MIX -/// channel containing channel information as defined by \xep{0369}: Mediated -/// Information eXchange (MIX). -/// -/// \since QXmpp 1.1 -/// -/// \ingroup Stanzas - class QXMPP_EXPORT QXmppMixInfoItem { public: @@ -57,8 +49,10 @@ public: QStringList contactJids() const; void setContactJids(const QStringList &); + /// \cond void parse(const QXmppElement &itemContent); QXmppElement toElement() const; + /// \endcond static bool isMixChannelInfo(const QDomElement &); @@ -66,14 +60,6 @@ private: QSharedDataPointer<QXmppMixInfoItemPrivate> d; }; -/// \brief The QXmppMixParticipantItem class represents a PubSub item of a MIX -/// channel participant as defined by \xep{0369}: Mediated Information eXchange -/// (MIX). -/// -/// \since QXmpp 1.1 -/// -/// \ingroup Stanzas - class QXMPP_EXPORT QXmppMixParticipantItem { public: @@ -89,8 +75,10 @@ public: QString jid() const; void setJid(const QString &); + /// \cond void parse(const QXmppElement &itemContent); QXmppElement toElement() const; + /// \endcond static bool isMixParticipantItem(const QDomElement &); |
