1// Copyright (C) 2016 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#include <private/qopcuanodeimpl_p.h>
5
6QT_BEGIN_NAMESPACE
7
8QOpcUaNodeImpl::QOpcUaNodeImpl()
9 : m_handle{0}
10 , m_registered{false}
11{
12}
13
14QOpcUaNodeImpl::~QOpcUaNodeImpl()
15{
16}
17
18quint64 QOpcUaNodeImpl::handle() const
19{
20 return m_handle;
21}
22
23void QOpcUaNodeImpl::setHandle(quint64 handle)
24{
25 m_handle = handle;
26}
27
28bool QOpcUaNodeImpl::registered() const
29{
30 return m_registered;
31}
32
33void QOpcUaNodeImpl::setRegistered(bool registered)
34{
35 m_registered = registered;
36}
37
38QT_END_NAMESPACE
39

source code of qtopcua/src/opcua/client/qopcuanodeimpl.cpp