summaryrefslogtreecommitdiffhomepage
path: root/xml.cpp
diff options
context:
space:
mode:
authorRoland Reichwein <mail@reichwein.it>2024-05-09 12:00:47 +0200
committerRoland Reichwein <mail@reichwein.it>2024-05-09 12:00:47 +0200
commite4fa505e2ce41b753c132c00f8c79290ee8f5936 (patch)
treeb4520c9bc558da6436b698437c25304beae6b6d4 /xml.cpp
parent20a2aa6070d6e7e6a1bd9e0bb2e85eca10543bbc (diff)
Added missing xml.h
Diffstat (limited to 'xml.cpp')
-rw-r--r--xml.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/xml.cpp b/xml.cpp
new file mode 100644
index 0000000..d4e7162
--- /dev/null
+++ b/xml.cpp
@@ -0,0 +1,9 @@
+#include "xml.h"
+
+#include <boost/property_tree/xml_parser.hpp>
+
+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<boost::property_tree::ptree::key_type>{});
+ return oss.str();
+}