// Copyright (C) 2015 basysKom GmbH, opensource@basyskom.com // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only #ifndef QOPCUAELEMENTOPERAND_H #define QOPCUAELEMENTOPERAND_H #include #include #include QT_BEGIN_NAMESPACE // OPC-UA part 4, 7.4.4.2 class QOpcUaElementOperandData; class Q_OPCUA_EXPORT QOpcUaElementOperand { public: QOpcUaElementOperand(); QOpcUaElementOperand(const QOpcUaElementOperand &); QOpcUaElementOperand(quint32 index); QOpcUaElementOperand &operator=(const QOpcUaElementOperand &); operator QVariant() const; ~QOpcUaElementOperand(); quint32 index() const; void setIndex(quint32 index); private: QSharedDataPointer data; }; QT_END_NAMESPACE Q_DECLARE_METATYPE(QOpcUaElementOperand) #endif // QOPCUAELEMENTOPERAND_H