#include "ct_laspointformat8.h" CT_LASPointFormat8::CT_LASPointFormat8() : CT_LASPointFormat7() { } size_t CT_LASPointFormat8::sizeInBytes() const { return CT_LASPointFormat7::sizeInBytes() + nirPacketSizeInBytes(); } CT_LasPointInfo* CT_LASPointFormat8::write(QDataStream &stream, const CT_Point &p, const size_t &globalIndex) { CT_LasPointInfo *info = CT_LASPointFormat7::write(stream, p, globalIndex); writeInfoFormat8(stream, info); return info; } QList CT_LASPointFormat8::typesToSearch() { QList l = CT_LASPointFormat7::typesToSearch(); l.append(nirPacketTypesNeeded()); return l; } void CT_LASPointFormat8::writeInfoFormat8(QDataStream &stream, CT_LasPointInfo *info) { writeNirPacket(stream, info); }