OSSIM - Open Source Software Image Map  Version 1.9.0 (20180803)
ossimLasInfo.h
Go to the documentation of this file.
1 //----------------------------------------------------------------------------
2 //
3 // File: ossimLibLasInfo.h
4 //
5 // License: MIT
6 //
7 // See LICENSE.txt file in the top level directory for more details.
8 //
9 // Author: David Burken
10 //
11 // Description: LAS LIDAR info object.
12 //
13 //----------------------------------------------------------------------------
14 // $Id$
15 #ifndef ossimLasInfo_HEADER
16 #define ossimLasInfo_HEADER 1
17 
21 
22 #include <iosfwd>
23 
26 {
27 public:
28 
30  ossimLasInfo();
31 
33  virtual ~ossimLasInfo();
34 
42  virtual bool open(const ossimFilename& file);
43 
51  virtual std::ostream& print(std::ostream& out) const;
52 
53 private:
55 };
56 
57 #endif /* End of "#ifndef ossimLasInfo_HEADER" */
virtual bool open(const ossimFilename &file)
open method.
ossimFilename m_file
Definition: ossimLasInfo.h:54
Info Base.
Definition: ossimInfoBase.h:32
LAS LIDAR info object.
Definition: ossimLasInfo.h:25
#define OSSIM_DLL
virtual std::ostream & print(std::ostream &out) const =0
Print method.
std::basic_ostream< char > ostream
Base class for char output streams.
Definition: ossimIosFwd.h:23