The QLNode class is an internal class for the QList template collection.
QLNode is a doubly linked list node; it has three pointers:
-
Pointer to the previous node.
-
Pointer to the next node.
-
Pointer to the actual data.
Sometimes it might be practical to have direct access to the list nodes in a QList, but it is seldom required.
- Warning
- Be very careful if you want to access the list nodes. The heap can easily get corrupted if you make a mistake.
- See also
- QList::currentNode(), QList::removeNode(), QList::takeNode()
Definition at line 50 of file qglist.h.