blob: ea1ce901e2986765fc4c95dac26cbbaabf4c2a5e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
// SPDX-FileCopyrightText: 2019 Linus Jahn <lnj@kaidan.im>
//
// SPDX-License-Identifier: LGPL-2.1-or-later
#include "QXmppBitsOfBinaryIq.h"
#include "QXmppConstants_p.h"
#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
///
/// \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)
{
for (auto child = element.firstChildElement();
!child.isNull();
child = child.nextSiblingElement()) {
if (QXmppBitsOfBinaryData::isBitsOfBinaryData(child)) {
return true;
}
}
return false;
}
/// \cond
void QXmppBitsOfBinaryIq::parseElementFromChild(const QDomElement &element)
{
for (auto child = element.firstChildElement();
!child.isNull();
child = child.nextSiblingElement()) {
if (QXmppBitsOfBinaryData::isBitsOfBinaryData(child)) {
QXmppBitsOfBinaryData::parseElementFromChild(child);
break;
}
}
}
void QXmppBitsOfBinaryIq::toXmlElementFromChild(QXmlStreamWriter *writer) const
{
QXmppBitsOfBinaryData::toXmlElementFromChild(writer);
}
/// \endcond
|