QOpcUaRange 类

OPC UA Range 类型。 更多信息...

头文件 #include <QOpcUaRange>
CMakefind_package(Qt6 REQUIRED COMPONENTS OpcUa)
target_link_libraries(mytarget PRIVATE Qt6::OpcUa)
qmakeQT += opcua

公共函数

QOpcUaRange()
QOpcUaRange(double low, double high)
QOpcUaRange(const QOpcUaRange &rhs)
doublehigh() const
doublelow() const
voidsetHigh(double high)
voidsetLow(double low)
QVariantoperator QVariant() const
QOpcUaRange &operator=(const QOpcUaRange &rhs)
booloperator==(const QOpcUaRange &rhs) const

详细描述

这是 Qt OPC UA 对 OPC UA 1.05 第 8 部分 5.6.2 中定义的 OPC UA Range 类型的表示。它由两个 double 类型的值组成,用于表示范围的最小值和最大值。范围通常用于存储关于节点可接受值的详细信息。

成员函数文档

QOpcUaRange::QOpcUaRange()

默认构造一个没有设置任何参数的范围。

QOpcUaRange::QOpcUaRange(double low, double high)

构造具有最小值 low 和最大值 high 的范围。

QOpcUaRange::QOpcUaRange(const QOpcUaRange &rhs)

rhs 构造一个范围。

double QOpcUaRange::high() const

返回范围的最高值。

另请参阅 setHigh().

double QOpcUaRange::low() const

返回范围的最低值。

另请参阅 setLow().

void QOpcUaRange::setHigh(double high)

将范围的最高值设置为 high.

另请参阅 ()。

void QOpcUaRange::setLow(double low)

将范围的低值设置为low

另请参阅 ()。

QVariant QOpcUaRange::operator QVariant() const

将此范围转换为QVariant

QOpcUaRange &QOpcUaRange::operator=(const QOpcUaRange &rhs)

rhs中的值设置到此范围中。

bool QOpcUaRange::operator==(const QOpcUaRange &rhs) const

如果此范围与rhs具有相同的值,则返回true

© 2024 The Qt Company Ltd. 本文档中包含的贡献的文档版权属于其各自的所有者。本提供的文档是根据自由软件基金会发布并由其发布的GNU自由文档许可证版本1.3的条款许可的。Qt和相应的标志是The Qt Company Ltd.在芬兰和/或世界其他国家的商标。所有其他商标均为其各自所有者的财产。