I am using Qt5.5, I want to read an XML file into memory maintaining the structure and attributes of the nodes and relationships.
So far I've been using QXmlStreamReader, however this doesn't really do much and I cannot see any obvious way to build the relationship between nodes.
What I ultimately want is to read the XML into a linked list where the root node is the same as the root xml node and other nodes are children of this.
After a little searching around, I found QDomDocument and QDomElement, however in order to use these the '.pro' file must be modified and xml should be appended to the QT line.