tiny_xml_test.cpp 466 B

1234567891011121314151617
  1. // tiny XML test program ---------------------------------------------------//
  2. // Copyright Beman Dawes 2002. Distributed under the Boost
  3. // Software License, Version 1.0. (See accompanying file
  4. // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  5. #include "tiny_xml.hpp"
  6. #include <iostream>
  7. int main()
  8. {
  9. boost::tiny_xml::element_ptr tree( boost::tiny_xml::parse( std::cin ) );
  10. boost::tiny_xml::write( *tree, std::cout );
  11. return 0;
  12. }
粤ICP备19079148号