I'm using Qt 4.7 on Mac OS X, and I have a QString containing a path to an XML file. I would like to import that file into a DOM tree and store the data as a member variable to a class. What is the best way to do this?
I've been looking at the QtXml documentation, but I can't find a clear way to convert from the QXml*
classes to the QDom*
classes.
I don't think you need to bother with the QXml* classes to traverse the DOM.
The QDomDocument class has a setContent() method that can take an open QFile.
There's a code sample in the "Details" section of the QDomDocument documentation.