MCPcopy Create free account
hub / github.com/PDAL/PDAL / dump

Method dump

plugins/e57/libE57Format/src/VectorNodeImpl.cpp:128–139  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

126
127#ifdef E57_ENABLE_DIAGNOSTIC_OUTPUT
128 void VectorNodeImpl::dump( int indent, std::ostream &os ) const
129 {
130 // don't checkImageFileOpen
131 os << space( indent ) << "type: Vector" << " (" << type() << ")" << std::endl;
132 NodeImpl::dump( indent, os ); // NOLINT(bugprone-parent-virtual-call)
133 os << space( indent ) << "allowHeteroChildren: " << allowHeteroChildren() << std::endl;
134 for ( unsigned i = 0; i < children_.size(); i++ )
135 {
136 os << space( indent ) << "child[" << i << "]:" << std::endl;
137 children_.at( i )->dump( indent + 2, os );
138 }
139 }
140#endif
141}

Callers

nothing calls this directly

Calls 4

spaceFunction · 0.85
atMethod · 0.80
typeFunction · 0.50
sizeMethod · 0.45

Tested by

no test coverage detected