libLAS API Reference  1.8.1
writer.hpp
Go to the documentation of this file.
1 /******************************************************************************
2  * $Id$
3  *
4  * Project: libLAS - http://liblas.org - A BSD library for LAS format data.
5  * Purpose: LAS writer class
6  * Author: Mateusz Loskot, mateusz@loskot.net
7  *
8  ******************************************************************************
9  * Copyright (c) 2008, Mateusz Loskot
10  *
11  * All rights reserved.
12  *
13  * Redistribution and use in source and binary forms, with or without
14  * modification, are permitted provided that the following
15  * conditions are met:
16  *
17  * * Redistributions of source code must retain the above copyright
18  * notice, this list of conditions and the following disclaimer.
19  * * Redistributions in binary form must reproduce the above copyright
20  * notice, this list of conditions and the following disclaimer in
21  * the documentation and/or other materials provided
22  * with the distribution.
23  * * Neither the name of the Martin Isenburg or Iowa Department
24  * of Natural Resources nor the names of its contributors may be
25  * used to endorse or promote products derived from this software
26  * without specific prior written permission.
27  *
28  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
29  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
30  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
31  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
32  * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
33  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
34  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
35  * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
36  * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
37  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
38  * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY
39  * OF SUCH DAMAGE.
40  ****************************************************************************/
41 
42 #ifndef LIBLAS_LASWRITER_HPP_INCLUDED
43 #define LIBLAS_LASWRITER_HPP_INCLUDED
44 
45 #include <liblas/version.hpp>
46 #include <liblas/header.hpp>
47 #include <liblas/point.hpp>
48 #include <liblas/transform.hpp>
49 #include <liblas/filter.hpp>
50 #include <liblas/export.hpp>
51 // boost
52 #include <boost/shared_ptr.hpp>
53 // std
54 #include <iosfwd> // std::ostream
55 #include <string>
56 #include <memory>
57 #include <cstdlib> // std::size_t
58 
59 namespace liblas {
60 
64 {
65 public:
66 
71  Writer(std::ostream& ofs, Header const& header);
72 
73  Writer(Writer const& other);
74  Writer(WriterIPtr ptr);
75 
76  Writer& operator=(Writer const& rhs);
77 
81  ~Writer();
82 
84  Header const& GetHeader() const;
85 
86  void SetHeader(Header const& header);
87 
88 
91  bool WritePoint(Point const& point);
92 
94  void WriteHeader();
95 
99  void SetFilters(std::vector<liblas::FilterPtr> const& filters);
100 
102  std::vector<liblas::FilterPtr> GetFilters() const;
103 
107  void SetTransforms(std::vector<liblas::TransformPtr> const& transforms);
108 
110  std::vector<liblas::TransformPtr> GetTransforms() const;
111 
112 private:
113 
114  WriterIPtr m_pimpl;
115 
116 };
117 
118 } // namespace liblas
119 
120 #endif // ndef LIBLAS_LASWRITER_HPP_INCLUDED
#define LAS_DLL
Definition: export.hpp:58
Namespace grouping all elements of libLAS public interface.
Definition: bounds.hpp:60
Defines public interface to LAS writer implementation.
Definition: writer.hpp:63
Point data record composed with X, Y, Z coordinates and attributes.
Definition: point.hpp:68
Definition of public header block.
Definition: header.hpp:78