#include "ct_laspointformat5.h" CT_LASPointFormat5::CT_LASPointFormat5() : CT_LASPointFormat3() { } size_t CT_LASPointFormat5::sizeInBytes() const { return CT_LASPointFormat3::sizeInBytes() + wavePacketSizeInBytes(); } CT_LasPointInfo* CT_LASPointFormat5::write(QDataStream &stream, const CT_Point &p, const size_t &globalIndex) { CT_LasPointInfo *info = CT_LASPointFormat3::write(stream, p, globalIndex); writeInfoFormat5(stream, info); return info; } QList CT_LASPointFormat5::typesToSearch() { QList l = CT_LASPointFormat3::typesToSearch(); l.append(wavePacketTypesNeeded()); return l; } void CT_LASPointFormat5::writeInfoFormat5(QDataStream &stream, CT_LasPointInfo *info) { writeWavePacket(stream, info); }