Тоже вариант - если уж совсем замучаюсь)) Теперь бьюсь над
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
Как его записать средствами QDomDocument? Если так:
QDomDocument doc;
QDomProcessingInstruction xmlDeclaration = doc.createProcessingInstruction(
"xml", "version=\"1.0\" encoding=\"windows-1251\"");
doc.appendChild(xmlDeclaration);
QDomElement xslElement = doc.createElement("xsl:stylesheet");
xslElement.setAttribute("version", "1.0");
xslElement.setAttribute("xmlns:xsl", "http://www.w3.org/1999/XSL/Transform");
doc.appendChild(xslElement);
То на выходе:
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"/>