Ticket #5413: write-xml.cpp

File write-xml.cpp, 232 bytes (added by anonymous, 12 years ago)
Line 
1#include <boost/property_tree/ptree.hpp>
2#include <boost/property_tree/xml_parser.hpp>
3
4using boost::property_tree::ptree;
5
6
7int main()
8{
9 ptree pt;
10 read_xml("xml-esc-in.xml", pt);
11 write_xml("xml-esc-out.xml", pt);
12
13 return 0;
14}
15