我正在使用 boost/property_tree 创建一个 XML 文件。不幸的是,我无法弄清楚如何将 xml-stylesheet 处理指令添加到文件中。
理想的输出:
<?xml version="1.0" encoding="utf-8"?> <-- This is added automatically
<?xml-stylesheet type="text/xsl" href="report.xsl"?> <-- How to add this line
<report>
...
</report>
boost/property_tree/ptree 有可能吗?