1 | // Copyright (C) 2015 basysKom GmbH, opensource@basyskom.com |
---|---|
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_OPCUA_BUILD_REMOVED_API |
5 | |
6 | #include "qopcuaglobal.h" |
7 | |
8 | QT_USE_NAMESPACE |
9 | |
10 | #if QT_OPCUA_REMOVED_SINCE(6, 7) |
11 | |
12 | #include "qopcuacontentfilterelement.h" |
13 | |
14 | bool QOpcUaContentFilterElement::operator==(const QOpcUaContentFilterElement &rhs) const |
15 | { return comparesEqual(lhs: *this, rhs); } |
16 | |
17 | #include "qopcuarelativepathelement.h" |
18 | |
19 | bool QOpcUaRelativePathElement::operator==(const QOpcUaRelativePathElement &rhs) const |
20 | { return comparesEqual(lhs: *this, rhs); } |
21 | |
22 | #include "qopcuasimpleattributeoperand.h" |
23 | |
24 | bool QOpcUaSimpleAttributeOperand::operator==(const QOpcUaSimpleAttributeOperand &rhs) const |
25 | { return comparesEqual(lhs: *this, rhs); } |
26 | |
27 | // #include "qotherheader.h" |
28 | // // implement removed functions from qotherheader.h |
29 | // order sections alphabetically to reduce chances of merge conflicts |
30 | |
31 | #endif // QT_OPCUA_REMOVED_SINCE(6, 7) |
32 |