Hi,
Is there any method of class QDomDocument to generate the "head" of the xml file? This "head" referring to is this:
Qt Code:
<?xml version="1.0" encoding="UTF-8"?>To copy to clipboard, switch view to plain text mode
Thanks,
Marcelo E. Geyer
Hi,
Is there any method of class QDomDocument to generate the "head" of the xml file? This "head" referring to is this:
Qt Code:
<?xml version="1.0" encoding="UTF-8"?>To copy to clipboard, switch view to plain text mode
Thanks,
Marcelo E. Geyer
QDomDocument::createProcessingInstruction()
e.g.
Qt Code:
createProcessingInstruction("xml", "version=\"1.0\" encoding=\"utf-8\"");To copy to clipboard, switch view to plain text mode
crsn (28th March 2011), estanisgeyer (18th September 2008)
Bookmarks