The OPC UA DoubleComplexNumber type. 更多...
头: | #include <QOpcUaDoubleComplexNumber> |
CMake: |
find_package(Qt6 REQUIRED COMPONENTS OpcUa)
target_link_libraries(mytarget PRIVATE Qt6::OpcUa) |
qmake: | QT += opcua |
QOpcUaDoubleComplexNumber () | |
QOpcUaDoubleComplexNumber (double real , double imaginary ) | |
double | imaginary () const |
double | real () const |
void | setImaginary (double imaginary ) |
void | setReal (double real ) |
QVariant | operator QVariant () const |
QOpcUaDoubleComplexNumber & | operator= (const QOpcUaDoubleComplexNumber & rhs ) |
bool | operator== (const QOpcUaDoubleComplexNumber & rhs ) const |
The DoubleComplexNumberType defined in OPC UA 1.05 part 8, 5.6.5. It stores a complex number with double precision.
Default constructs a double complex number with no parameters set.
Constructs a double complex number with real part real and imaginary part imaginary .
Returns the imaginary part of the complex number.
另请参阅 setImaginary ().
Returns the real part of the complex number.
另请参阅 setReal ().
Sets the imaginary part of the complex number to imaginary .
另请参阅 imaginary ().
Sets the real part of the complex number to real .
另请参阅 real ().
Converts this double complex number to QVariant .
设置值从 rhs in this double complex number.
返回
true
if this double complex number has the same value as
rhs
.