#include <string>
#include <iostream>
Include dependency graph for tree.h:
Go to the source code of this file.
00219 { 00220 XmlTag top("xml"); 00221 top.addChild(new XmlTag("contents"))->addChild(new XmlText("Foo")); 00222 std::cout<<top.getString()<<std::endl; 00223 return 0; 00224 }