Emulated const pointer to QVariant based on a pointer. More...
| Header: | #include <QVariantConstPointer>
|
| CMake: | find_package(Qt6 REQUIRED COMPONENTS Core)target_link_libraries(mytarget PRIVATE Qt6::Core)
|
| qmake: | QT += core
|
| Since: | Qt 6.0 |
| QVariantConstPointer(QVariant variant) | |
| QVariant | operator*() const |
| const QVariant * | operator->() const |
QVariantConstPointer wraps a QVariant and returns it from its operator*(). This makes it suitable as replacement for an actual const pointer. We cannot return an actual const pointer from generic iterators as the iterators don't hold an actual QVariant.
[explicit] QVariantConstPointer::QVariantConstPointer(QVariant variant)
Constructs a QVariantConstPointer from a variant.
Dereferences the QVariantConstPointer to retrieve its internal QVariant.
Returns a const pointer to the QVariant, conforming to the conventions for operator->().
© The Qt Company Ltd
Licensed under the GNU Free Documentation License, Version 1.3.
https://doc.qt.io/qt-6.9/qvariantconstpointer.html