| 1 | // Copyright (C) 2021 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 | #ifndef OPCUAFOREIGN_P_H |
| 5 | #define OPCUAFOREIGN_P_H |
| 6 | |
| 7 | #include <QLoggingCategory> |
| 8 | #include <qqml.h> |
| 9 | #include <QtOpcUa/qopcuatype.h> |
| 10 | #include <QtOpcUa/qopcuausertokenpolicy.h> |
| 11 | #include <QtOpcUa/qopcuaapplicationdescription.h> |
| 12 | #include <QtOpcUa/qopcuausertokenpolicy.h> |
| 13 | #include <QtCore/private/qglobal_p.h> |
| 14 | |
| 15 | // |
| 16 | // W A R N I N G |
| 17 | // ------------- |
| 18 | // |
| 19 | // This file is not part of the Qt API. It exists purely as an |
| 20 | // implementation detail. This header file may change from version to |
| 21 | // version without notice, or even be removed. |
| 22 | // |
| 23 | // We mean it. |
| 24 | // |
| 25 | |
| 26 | QT_BEGIN_NAMESPACE |
| 27 | |
| 28 | namespace Constants |
| 29 | { |
| 30 | Q_NAMESPACE |
| 31 | QML_FOREIGN_NAMESPACE(QOpcUa) |
| 32 | QML_NAMESPACE_EXTENDED(QOpcUaUserTokenPolicy) |
| 33 | QML_ELEMENT |
| 34 | QML_ADDED_IN_VERSION(5, 12) |
| 35 | }; |
| 36 | |
| 37 | namespace QOpcUaApplicationDescriptionForeign |
| 38 | { |
| 39 | Q_NAMESPACE |
| 40 | QML_FOREIGN_NAMESPACE(QOpcUaApplicationDescription) |
| 41 | QML_NAMED_ELEMENT(ApplicationDescription) |
| 42 | QML_ADDED_IN_VERSION(5, 13) |
| 43 | }; |
| 44 | |
| 45 | namespace QOpcUaUserTokenPolicyForeign |
| 46 | { |
| 47 | Q_NAMESPACE |
| 48 | QML_FOREIGN_NAMESPACE(QOpcUaUserTokenPolicy) |
| 49 | QML_NAMED_ELEMENT(UserTokenPolicy) |
| 50 | QML_ADDED_IN_VERSION(5, 13) |
| 51 | }; |
| 52 | |
| 53 | QT_END_NAMESPACE |
| 54 | |
| 55 | #endif // OPCUAFOREIGN_P_H |
| 56 | |