Branch data Line data Source code
1 : : /*************************************************************************** 2 : : qgspointcloudblock.cpp 3 : : ----------------------- 4 : : begin : October 2020 5 : : copyright : (C) 2020 by Peter Petrik 6 : : email : zilolv at gmail dot com 7 : : ***************************************************************************/ 8 : : 9 : : /*************************************************************************** 10 : : * * 11 : : * This program is free software; you can redistribute it and/or modify * 12 : : * it under the terms of the GNU General Public License as published by * 13 : : * the Free Software Foundation; either version 2 of the License, or * 14 : : * (at your option) any later version. * 15 : : * * 16 : : ***************************************************************************/ 17 : : 18 : : #include "qgis.h" 19 : : #include "qgspointcloudblock.h" 20 : : #include "qgspointcloudattribute.h" 21 : : 22 : : 23 : 0 : QgsPointCloudBlock::QgsPointCloudBlock( 24 : : int count, 25 : : const QgsPointCloudAttributeCollection &attributes, 26 : : const QByteArray &data 27 : : ) 28 : 0 : : mPointCount( count ) 29 : 0 : , mAttributes( attributes ) 30 : 0 : , mStorage( data ) 31 : : { 32 : 0 : } 33 : : 34 : 0 : QgsPointCloudBlock::~QgsPointCloudBlock() = default; 35 : : 36 : 0 : const char *QgsPointCloudBlock::data() const 37 : : { 38 : 0 : return mStorage.data(); 39 : : } 40 : : 41 : 0 : int QgsPointCloudBlock::pointCount() const 42 : : { 43 : 0 : return mPointCount; 44 : : } 45 : : 46 : 0 : QgsPointCloudAttributeCollection QgsPointCloudBlock::attributes() const 47 : : { 48 : 0 : return mAttributes; 49 : : }