| 2431 | |
| 2432 | |
| 2433 | void XMLDocument::Print( XMLPrinter* streamer ) const |
| 2434 | { |
| 2435 | if ( streamer ) { |
| 2436 | Accept( streamer ); |
| 2437 | } |
| 2438 | else { |
| 2439 | XMLPrinter stdoutStreamer( stdout ); |
| 2440 | Accept( &stdoutStreamer ); |
| 2441 | } |
| 2442 | } |
| 2443 | |
| 2444 | |
| 2445 | void XMLDocument::SetError( XMLError error, int lineNum, const char* format, ... ) |
nothing calls this directly
no test coverage detected