I want to write and read an xml file using Qt. Is there a simple example code, which generates an XML file dynamically?
I've found some Qt xml classes, but does anybody know what they are used to and is there an easy example which uses these classes?
QtXml Module (http://doc.qt.nokia.com/latest/qtxml.html)
QXmlStreamReader (http://doc.qt.nokia.com/4.7/qxmlstreamreader.html)
QXmlStreamWriter (http://doc.qt.nokia.com/4.7/qxmlstreamreader.html)
I've written a managed C++ code, but my problem is that this code (using /clr required) does not support IntelliSense in Visual Studio 2010. Now I try to find an alternative. If anybody knows something which has almost the same functions, only using unmanaged code, would be perfect!
Moreover I've found this, but don't really know how to use it: QString to XML in QT