QMqttStringPair Class
The QMqttStringPair class represents the string pair data type of the MQTT 5.0 standard. More...
Header: | #include <QMqttStringPair> |
CMake: | find_package(Qt6 REQUIRED COMPONENTS Mqtt) target_link_libraries(mytarget PRIVATE Qt6::Mqtt) |
qmake: | QT += mqtt |
Public Functions
QString | name() const |
void | setName(const QString &n) |
void | setValue(const QString &v) |
QString | value() const |
bool | operator!=(const QMqttStringPair &other) const |
bool | operator==(const QMqttStringPair &other) const |
Member Function Documentation
QString QMqttStringPair::name() const
Returns the name of the string pair.
See also setName().
void QMqttStringPair::setName(const QString &n)
Sets the name to n.
See also name().
void QMqttStringPair::setValue(const QString &v)
Sets the value to v.
See also value().
QString QMqttStringPair::value() const
Returns the value of the string pair.
See also setValue().
bool QMqttStringPair::operator!=(const QMqttStringPair &other) const
Returns true
if this instance does not match other.
bool QMqttStringPair::operator==(const QMqttStringPair &other) const
Returns true
if this instance matches other.
© 2024 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.