#include "xml.h" #include std::string Reichwein::XML::plain_xml(const boost::property_tree::ptree& ptree) { std::ostringstream oss; boost::property_tree::xml_parser::write_xml_element(oss, {}, ptree, -1, boost::property_tree::xml_writer_settings{}); return oss.str(); }