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

Method dump

plugins/e57/libE57Format/src/E57XmlParser.cpp:241–265  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

239}
240
241void E57XmlParser::ParseInfo::dump( int indent, std::ostream &os ) const
242{
243 os << space( indent ) << "nodeType: " << nodeType << std::endl;
244 os << space( indent ) << "minimum: " << minimum << std::endl;
245 os << space( indent ) << "maximum: " << maximum << std::endl;
246 os << space( indent ) << "scale: " << scale << std::endl;
247 os << space( indent ) << "offset: " << offset << std::endl;
248 os << space( indent ) << "precision: " << precision << std::endl;
249 os << space( indent ) << "floatMinimum: " << floatMinimum << std::endl;
250 os << space( indent ) << "floatMaximum: " << floatMaximum << std::endl;
251 os << space( indent ) << "fileOffset: " << fileOffset << std::endl;
252 os << space( indent ) << "length: " << length << std::endl;
253 os << space( indent ) << "allowHeterogeneousChildren: " << allowHeterogeneousChildren
254 << std::endl;
255 os << space( indent ) << "recordCount: " << recordCount << std::endl;
256 if ( container_ni )
257 {
258 os << space( indent ) << "container_ni: <defined>" << std::endl;
259 }
260 else
261 {
262 os << space( indent ) << "container_ni: <null>" << std::endl;
263 }
264 os << space( indent ) << "childText: \"" << childText << "\"" << std::endl;
265}
266
267//=============================================================================
268// E57XmlParser

Callers 2

startElementMethod · 0.45
endElementMethod · 0.45

Calls 1

spaceFunction · 0.85

Tested by

no test coverage detected