QDomText
QDomText represents a text node within a DOM (Document Object Model) tree. In the Qt framework, QDomText is part of the QDomDocument class, which allows for the manipulation of XML and HTML documents. A text node typically contains character data that resides between element tags. For example, in the XML snippet <name>Alice</name>, "Alice" would be represented by a QDomText node.
Instances of QDomText are created when parsing an XML or HTML document or can be constructed programmatically.
When working with a QDomDocument, one might traverse the document tree and encounter QDomText nodes as children