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

Method IndexPacket

plugins/e57/libE57Format/src/Packet.cpp:530–536  ·  view source on GitHub ↗

============================================================================= IndexPacket

Source from the content-addressed store, hash-verified

528//=============================================================================
529// IndexPacket
530IndexPacket::IndexPacket()
531{
532 // Double check that packet struct is correct length. Watch out for RTTI increasing the size.
533 // sizeof( IndexPacketHeader ) + ( MAX_ENTRIES * sizeof( IndexPacket::Entry ) )
534 static_assert( sizeof( IndexPacket ) == ( 16 + ( 2048 * 16 ) ),
535 "Unexpected size of IndexPacket" );
536}
537
538void IndexPacket::verify( unsigned bufferLength, uint64_t totalRecordCount,
539 uint64_t fileSize ) const

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected