summaryrefslogtreecommitdiffhomepage
path: root/xml.h
blob: 44471ddc3516eb2eed80cd2bcdffabad172c36a7 (plain)
1
2
3
4
5
6
7
8
9
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);
}