Qt
Internal/Contributor docs for the Qt SDK. Note: These are NOT official API docs; those are found at https://doc.qt.io/
Loading...
Searching...
No Matches
removed_api.cpp
Go to the documentation of this file.
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
8QT_USE_NAMESPACE
9
10#if QT_XML_REMOVED_SINCE(6, 9)
11
12#if QT_CONFIG(dom)
13
14#include "qdom.h"
15
16bool QDomNodeList::operator==(const QDomNodeList &other) const
17{
18 return comparesEqual(*this, other);
19}
20
21bool QDomNodeList::operator!=(const QDomNodeList &other) const
22{
23 return !comparesEqual(*this, 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)