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

Method dump

plugins/e57/libE57Format/src/CompressedVectorReaderImpl.cpp:611–636  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

609
610#ifdef E57_ENABLE_DIAGNOSTIC_OUTPUT
611 void CompressedVectorReaderImpl::dump( int indent, std::ostream &os )
612 {
613 os << space( indent ) << "isOpen:" << isOpen_ << std::endl;
614
615 for ( unsigned i = 0; i < dbufs_.size(); i++ )
616 {
617 os << space( indent ) << "dbufs[" << i << "]:" << std::endl;
618 dbufs_[i].dump( indent + 4, os );
619 }
620
621 os << space( indent ) << "cVector:" << std::endl;
622 cVector_->dump( indent + 4, os );
623
624 os << space( indent ) << "proto:" << std::endl;
625 proto_->dump( indent + 4, os );
626
627 for ( unsigned i = 0; i < channels_.size(); i++ )
628 {
629 os << space( indent ) << "channels[" << i << "]:" << std::endl;
630 channels_[i].dump( indent + 4, os );
631 }
632
633 os << space( indent ) << "recordCount: " << recordCount_ << std::endl;
634 os << space( indent ) << "maxRecordCount: " << maxRecordCount_ << std::endl;
635 os << space( indent ) << "sectionEndLogicalOffset: " << sectionEndLogicalOffset_ << std::endl;
636 }
637#endif
638
639}

Callers 1

feedPacketToDecodersMethod · 0.45

Calls 2

spaceFunction · 0.85
sizeMethod · 0.45

Tested by

no test coverage detected