| 1 | // Copyright (C) 2024 The Qt Company Ltd. |
| 2 | // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only |
| 3 | |
| 4 | #define QT_XML_BUILD_REMOVED_API |
| 5 | |
| 6 | #include "qtxmlglobal.h" |
| 7 | |
| 8 | QT_USE_NAMESPACE |
| 9 | |
| 10 | #if QT_XML_REMOVED_SINCE(6, 9) |
| 11 | |
| 12 | #if QT_CONFIG(dom) |
| 13 | |
| 14 | #include "qdom.h" |
| 15 | |
| 16 | bool QDomNodeList::operator==(const QDomNodeList &other) const |
| 17 | { |
| 18 | return comparesEqual(lhs: *this, rhs: other); |
| 19 | } |
| 20 | |
| 21 | bool QDomNodeList::operator!=(const QDomNodeList &other) const |
| 22 | { |
| 23 | return !comparesEqual(lhs: *this, rhs: other); |
| 24 | } |
| 25 | |
| 26 | #endif // QT_CONFIG(dom) |
| 27 | |
| 28 | // #include <qotherheader.h> |
| 29 | // // implement removed functions from qotherheader.h |
| 30 | // order sections alphabetically to reduce chances of merge conflicts |
| 31 | |
| 32 | #endif // QT_XML_REMOVED_SINCE(6, 9) |
| 33 | |