diff options
| author | Linus Jahn <lnj@kaidan.im> | 2021-03-27 14:28:43 +0100 |
|---|---|---|
| committer | Linus Jahn <lnj@kaidan.im> | 2021-03-28 00:09:13 +0100 |
| commit | b9c1ca9b60e3bdfe1371c813750ce31383bcc25f (patch) | |
| tree | 3b7943d00f08104717a929dfd35ca01fab56fd77 /src/base/QXmppBitsOfBinaryIq.cpp | |
| parent | 5c6a6b8385df6b3f9cc640781eb76900e9364015 (diff) | |
doc: Fix warnings for BitsOfBinary* classes
Diffstat (limited to 'src/base/QXmppBitsOfBinaryIq.cpp')
| -rw-r--r-- | src/base/QXmppBitsOfBinaryIq.cpp | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/src/base/QXmppBitsOfBinaryIq.cpp b/src/base/QXmppBitsOfBinaryIq.cpp index 65cbd754..44dc0dc3 100644 --- a/src/base/QXmppBitsOfBinaryIq.cpp +++ b/src/base/QXmppBitsOfBinaryIq.cpp @@ -28,15 +28,25 @@ #include <QDomElement> #include <QSharedData> +/// +/// \class QXmppBitsOfBinaryIq +/// +/// QXmppBitsOfBinaryIq represents a \xep{0231, Bits of Binary} IQ to request +/// and transmit Bits of Binary data elements. +/// +/// \since QXmpp 1.2 +/// + QXmppBitsOfBinaryIq::QXmppBitsOfBinaryIq() = default; QXmppBitsOfBinaryIq::~QXmppBitsOfBinaryIq() = default; -/// Returns true, if \c element is a \xep{0231}: Bits of Binary IQ +/// +/// Returns true, if \c element is a \xep{0231, Bits of Binary} IQ /// /// \note This may also return true, if the IQ is not a Bits of Binary IQ in /// first place, but only contains a Bits of Binary data element. - +/// bool QXmppBitsOfBinaryIq::isBitsOfBinaryIq(const QDomElement &element) { QDomElement child = element.firstChildElement(); |
