Sophie

Sophie

distrib > Fedora > 18 > x86_64 > by-pkgid > 8c86774a3e53d77cc119f53a2b94a57a > files > 1392

root-tutorial-5.34.14-2.fc18.noarch.rpm

// Example to create a new xml file with the TXMLEngine class
//Author: Sergey Linev
   
#include "TXMLEngine.h"

void xmlnewfile(const char* filename = "example.xml")
{
   // First create engine
   TXMLEngine* xml = new TXMLEngine;
   
   // Create main node of document tree
   XMLNodePointer_t mainnode = xml->NewChild(0, 0, "main");

   // Simple child node with content inside
   xml->NewChild(mainnode, 0, "child1", "Content of child1 node");

   // Other child node with attributes
   XMLNodePointer_t child2 = xml->NewChild(mainnode, 0, "child2");
   xml->NewAttr(child2, 0, "attr1","value1"); 
   xml->NewAttr(child2, 0, "attr2","value2");

   // Child node with subnodes
   XMLNodePointer_t child3 = xml->NewChild(mainnode, 0, "child3");
   xml->NewChild(child3, 0, "subchild1", "subchild1 content");
   xml->NewChild(child3, 0, "subchild2", "subchild2 content");
   xml->NewChild(child3, 0, "subchild3", "subchild3 content");

   // Child node with subnodes and namespace
   XMLNodePointer_t child4 = xml->NewChild(mainnode, 0, "child4");
   XMLNsPointer_t ns4 = xml->NewNS(child4, "http://wesite/webpage");
   xml->NewChild(child4, ns4, "subchild1", "subchild1 content");
   xml->NewChild(child4, ns4, "subchild2", "subchild2 content");
   xml->NewChild(child4, ns4, "subchild3", "subchild3 content");

   // now create doccumnt and assign main node of document
   XMLDocPointer_t xmldoc = xml->NewDoc();
   xml->DocSetRootElement(xmldoc, mainnode);
   
   // Save document to file
   xml->SaveDoc(xmldoc, filename);
      
   // Release memory before exit
   xml->FreeDoc(xmldoc);
   delete xml;
}