laspointreader.h

来自「Lidar数据处理时」· C头文件 代码 · 共 41 行

H
41
字号
/*
===============================================================================

  FILE:  LASpointReader.h
  
  CONTENTS:
  
    Common interface for the classes that read points raw or compressed.

  PROGRAMMERS:
  
    martin isenburg@cs.unc.edu
  
  COPYRIGHT:
  
    copyright (C) 2007  martin isenburg@cs.unc.edu
    
    This software is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  
  CHANGE HISTORY:
  
    22 February 2007 -- created about an hour before henna's birthday
  
===============================================================================
*/
#ifndef LAS_POINT_READER_H
#define LAS_POINT_READER_H

#include "lasdefinitions.h"

class LASpointReader
{
public:
  virtual bool read_point(LASpoint* point, double* gps_time = 0)=0;
  virtual ~LASpointReader(){};
};

#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?