I'm trying to generate an xml using boost. Going fine so far, but the xml that gets generated needs to have a namespace.
so instead of <name>"Harry"</name>
it would say <ns1:name>"Harry"</ns1:name>
Is there any way to add a namespace to the XML with boost without manually adding the "ns1" to every line?