diff options
| author | Dheerendra Purohit <dheerendra@pthinks.com> | 2025-06-17 16:44:04 +0530 |
|---|---|---|
| committer | Dheerendra Purohit <dheerendra@pthinks.com> | 2025-06-18 10:58:05 +0000 |
| commit | 5d717413b0704bcb7f5e2edd6ab56972ebd1639a (patch) | |
| tree | 41ae9d673d5f3d6ad739d11885a6b5892b7d03f4 /src/corelib/kernel/qmetacontainer.cpp | |
| parent | 7432082333294091a88f9dd8b84d8fd10f68b10a (diff) | |
Doc: Add QMetaContainer class documentation
Provided description for the QMetaContainer class, which was
previously missing.
Pick-to: 6.10 6.9
Fixes: QTBUG-96379
Change-Id: I35f6f01c7e2d24cd2b4e89a2e127a12bc601e9e9
Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
Diffstat (limited to 'src/corelib/kernel/qmetacontainer.cpp')
| -rw-r--r-- | src/corelib/kernel/qmetacontainer.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/corelib/kernel/qmetacontainer.cpp b/src/corelib/kernel/qmetacontainer.cpp index c70afe163bb..0ac4a79db38 100644 --- a/src/corelib/kernel/qmetacontainer.cpp +++ b/src/corelib/kernel/qmetacontainer.cpp @@ -44,6 +44,16 @@ QT_BEGIN_NAMESPACE \brief The QMetaContainer class provides common functionality for sequential and associative containers. + QMetaContainer is part of Qt's meta-type system that allows type-erased access + to container-like types at runtime. + + It serves as a common base for accessing properties of containers in a generic + way, such as size, iteration, and clearing operations, without knowing the actual + container type. + + Derived classes, such as QMetaSequence, provide specialized interfaces for + sequential containers. + \ingroup objectmodel \compares equality |
