MCPcopy Create free account
hub / github.com/MyGUI/mygui / print

Method print

UnitTests/TestApp/pugixml.cpp:5201–5214  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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(

Callers 1

saveToFileMethod · 0.45

Calls 2

node_outputFunction · 0.70
printFunction · 0.50

Tested by

no test coverage detected