XML
-
You need to work with QDomDocument, QDomNode and QDomElement classes. If you want to start from scratch, create new QDomDocument object and then populate it with elements.
-
You can use "QXmlStreamWriter":http://qt-project.org/doc/qt-4.8/qxmlstreamwriter.html to create XML documents. Here is a "simple example":http://www.developer.nokia.com/Community/Wiki/Generate_XML_programatically_in_Qt .
-
Maybe try this doc page
Googling for "qxmlstreamreader example" gave me those two examples:
http://www.developer.nokia.com/Community/Wiki/Using_QXmlStreamReader_to_parse_XML_in_Qt
http://www.qtforum.org/article/28453/qxmlstreamreader-parsing-a-simple-xml-document.htmlBtw, I would say that QVector< QString > is not the most appropriate storage for XML information...
-
"youtube link":www.youtube.com/watch?v=NXGE5XUrRSI&feature=youtu.be
i watched this video and now understood whats all there in the documentation
[edit: fixed link, eddy]