diff options
| author | Linus Jahn <lnj@kaidan.im> | 2021-04-02 17:27:01 +0200 |
|---|---|---|
| committer | Linus Jahn <lnj@kaidan.im> | 2021-04-06 15:47:48 +0200 |
| commit | 93033e9e431e999e9b52dc24cae2170518b685d2 (patch) | |
| tree | 868836664e97b825e242aeaa56e9254d1ae14109 /src/base/QXmppMamIq.h | |
| parent | d8dbd2b963adf4774ca600fca729bf9ae1a41fef (diff) | |
| download | qxmpp-93033e9e431e999e9b52dc24cae2170518b685d2.tar.gz | |
doc: Fix warnings from QXmppMam{Query,Result}Iq
Diffstat (limited to 'src/base/QXmppMamIq.h')
| -rw-r--r-- | src/base/QXmppMamIq.h | 20 |
1 files changed, 4 insertions, 16 deletions
diff --git a/src/base/QXmppMamIq.h b/src/base/QXmppMamIq.h index d23caa97..e1f795f3 100644 --- a/src/base/QXmppMamIq.h +++ b/src/base/QXmppMamIq.h @@ -33,14 +33,6 @@ class QXmppMamQueryIqPrivate; class QXmppMamResultIqPrivate; -/// -/// \brief The QXmppMamQueryIq class represents the query IQ for -/// \xep{0313}: Message Archive Management. -/// -/// \ingroup Stanzas -/// -/// \since QXmpp 1.0 -/// class QXmppMamQueryIq : public QXmppIq { public: @@ -59,24 +51,18 @@ public: QString queryId() const; void setQueryId(const QString &id); + /// \cond static bool isMamQueryIq(const QDomElement &element); protected: void parseElementFromChild(const QDomElement &element) override; void toXmlElementFromChild(QXmlStreamWriter *writer) const override; + /// \endcond private: QSharedDataPointer<QXmppMamQueryIqPrivate> d; }; -/// -/// \brief The QXmppMamQueryIq class represents the result IQ for -/// \xep{0313}: Message Archive Management. -/// -/// \ingroup Stanzas -/// -/// \since QXmpp 1.0 -/// class QXmppMamResultIq : public QXmppIq { public: @@ -91,11 +77,13 @@ public: bool complete() const; void setComplete(bool complete); + /// \cond static bool isMamResultIq(const QDomElement &element); protected: void parseElementFromChild(const QDomElement &element) override; void toXmlElementFromChild(QXmlStreamWriter *writer) const override; + /// \endcond private: QSharedDataPointer<QXmppMamResultIqPrivate> d; |
