| 2306 | |
| 2307 | |
| 2308 | void XMLDocument::Print( XMLPrinter* streamer ) const |
| 2309 | { |
| 2310 | if ( streamer ) { |
| 2311 | Accept( streamer ); |
| 2312 | } |
| 2313 | else { |
| 2314 | XMLPrinter stdoutStreamer( stdout ); |
| 2315 | Accept( &stdoutStreamer ); |
| 2316 | } |
| 2317 | } |
| 2318 | |
| 2319 | |
| 2320 | void XMLDocument::SetError( XMLError error, int lineNum, const char* format, ... ) |
nothing calls this directly
no test coverage detected