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 OPCUAOPERANDBASE_P_H
5#define OPCUAOPERANDBASE_P_H
6
7#include <QObject>
8#include <QVariant>
9#include <private/qglobal_p.h>
10
11//
12// W A R N I N G
13// -------------
14//
15// This file is not part of the Qt API. It exists purely as an
16// implementation detail. This header file may change from version to
17// version without notice, or even be removed.
18//
19// We mean it.
20//
21
22QT_BEGIN_NAMESPACE
23
24class QOpcUaClient;
25
26class OpcUaOperandBase : public QObject {
27 Q_OBJECT
28
29public:
30 explicit OpcUaOperandBase(QObject *parent = nullptr);
31 ~OpcUaOperandBase();
32
33 virtual QVariant toCppVariant(QOpcUaClient *client) const;
34};
35
36QT_END_NAMESPACE
37
38#endif // OPCUAOPERANDBASE_P_H
39

source code of qtopcua/src/declarative_opcua/opcuaoperandbase_p.h