summaryrefslogtreecommitdiffhomepage
path: root/xml.h
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.h
parent20a2aa6070d6e7e6a1bd9e0bb2e85eca10543bbc (diff)
Added missing xml.h
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);
+}