| 2476 | |
| 2477 | |
| 2478 | void XMLDocument::Print( XMLPrinter* streamer ) const |
| 2479 | { |
| 2480 | if ( streamer ) { |
| 2481 | Accept( streamer ); |
| 2482 | } |
| 2483 | else { |
| 2484 | XMLPrinter stdoutStreamer( stdout ); |
| 2485 | Accept( &stdoutStreamer ); |
| 2486 | } |
| 2487 | } |
| 2488 | |
| 2489 | |
| 2490 | void XMLDocument::ClearError() { |
nothing calls this directly
no test coverage detected