bioinfornatics
Joined: 22 Jun 2010 Posts: 90
|
Posted: Wed Nov 30, 2011 5:54 am Post subject: xml namespace |
|
|
dear,
i have read your test and i dot see how write a tag with a namspace like
Quote: | <TheNameSpace:theTag theAttribute="1">bla</TheNameSpace:theTag> |
Code: |
AttributeMap map;
auto indented = XmlPrinter(p);
auto nextIndent = XmlPrinter(indented);
map["theAttribute"] = "1";
indented.putStartTag("theTag", map, false);
indented.putEndTag("theTag");
|
|
|