1
0

tiny_xml_test.cpp 372 B

12345678910111213141516
  1. // tiny XML test program ---------------------------------------------------//
  2. // Copyright Beman Dawes 2002.
  3. // See accompanying license for terms and conditions of use.
  4. #include "tiny_xml.hpp"
  5. #include <iostream>
  6. int main()
  7. {
  8. boost::tiny_xml::element_ptr tree( boost::tiny_xml::parse( std::cin ) );
  9. boost::tiny_xml::write( *tree, std::cout );
  10. return 0;
  11. }
粤ICP备19079148号