|
Last change
on this file since 32 was
29,
checked in by landauf, 17 years ago
|
|
updated boost from 1_33_1 to 1_34_1
|
|
File size:
466 bytes
|
| Line | |
|---|
| 1 | // tiny XML test program ---------------------------------------------------// |
|---|
| 2 | |
|---|
| 3 | // Copyright Beman Dawes 2002. Distributed under the Boost |
|---|
| 4 | // Software License, Version 1.0. (See accompanying file |
|---|
| 5 | // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) |
|---|
| 6 | |
|---|
| 7 | #include "tiny_xml.hpp" |
|---|
| 8 | |
|---|
| 9 | #include <iostream> |
|---|
| 10 | |
|---|
| 11 | int main() |
|---|
| 12 | { |
|---|
| 13 | boost::tiny_xml::element_ptr tree( boost::tiny_xml::parse( std::cin ) ); |
|---|
| 14 | boost::tiny_xml::write( *tree, std::cout ); |
|---|
| 15 | return 0; |
|---|
| 16 | } |
|---|
| 17 | |
|---|
Note: See
TracBrowser
for help on using the repository browser.