summaryrefslogtreecommitdiffhomepage
path: root/xml.h
diff options
context:
space:
mode:
Diffstat (limited to 'xml.h')
-rw-r--r--xml.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/xml.h b/xml.h
new file mode 100644
index 0000000..44471dd
--- /dev/null
+++ b/xml.h
@@ -0,0 +1,10 @@
+#pragma once
+
+#include <string>
+#include <boost/property_tree/ptree.hpp>
+
+#define EXPORT __attribute__((visibility("default")))
+
+namespace Reichwein::XML {
+ EXPORT std::string plain_xml(const boost::property_tree::ptree& ptree);
+}