| 5199 | } |
| 5200 | |
| 5201 | PUGI__FN void xml_node::print( |
| 5202 | xml_writer& writer, |
| 5203 | const char_t* indent, |
| 5204 | unsigned int flags, |
| 5205 | xml_encoding encoding, |
| 5206 | unsigned int depth) const |
| 5207 | { |
| 5208 | if (!_root) |
| 5209 | return; |
| 5210 | |
| 5211 | impl::xml_buffered_writer buffered_writer(writer, encoding); |
| 5212 | |
| 5213 | impl::node_output(buffered_writer, *this, indent, flags, depth); |
| 5214 | } |
| 5215 | |
| 5216 | #ifndef PUGIXML_NO_STL |
| 5217 | PUGI__FN void xml_node::print( |
no test coverage detected