~ubuntu-branches/ubuntu/wily/liblas/wily

« back to all changes in this revision

Viewing changes to include/liblas/lasfile.hpp

  • Committer: Bazaar Package Importer
  • Author(s): Francesco Paolo Lovergine
  • Date: 2009-10-02 12:36:21 UTC
  • Revision ID: james.westby@ubuntu.com-20091002123621-xrf0hhzxbwloga43
Tags: upstream-1.2.1
ImportĀ upstreamĀ versionĀ 1.2.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/******************************************************************************
 
2
 * $Id$
 
3
 *
 
4
 * Project:  libLAS - http://liblas.org - A BSD library for LAS format data.
 
5
 * Purpose:  A composite class to handle read/write operations
 
6
 * Author:   Mateusz Loskot, mateusz@loskot.net
 
7
 *
 
8
 ******************************************************************************
 
9
 * Copyright (c) 2008, Mateusz Loskot
 
10
 * Copyright (c) 2008, Howard Butler
 
11
 *
 
12
 * All rights reserved.
 
13
 * 
 
14
 * Redistribution and use in source and binary forms, with or without 
 
15
 * modification, are permitted provided that the following 
 
16
 * conditions are met:
 
17
 * 
 
18
 *     * Redistributions of source code must retain the above copyright 
 
19
 *       notice, this list of conditions and the following disclaimer.
 
20
 *     * Redistributions in binary form must reproduce the above copyright 
 
21
 *       notice, this list of conditions and the following disclaimer in 
 
22
 *       the documentation and/or other materials provided 
 
23
 *       with the distribution.
 
24
 *     * Neither the name of the Martin Isenburg or Iowa Department 
 
25
 *       of Natural Resources nor the names of its contributors may be 
 
26
 *       used to endorse or promote products derived from this software 
 
27
 *       without specific prior written permission.
 
28
 * 
 
29
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 
 
30
 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 
 
31
 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS 
 
32
 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE 
 
33
 * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, 
 
34
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, 
 
35
 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS 
 
36
 * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED 
 
37
 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, 
 
38
 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT 
 
39
 * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY 
 
40
 * OF SUCH DAMAGE.
 
41
 ****************************************************************************/
 
42
 
 
43
#ifndef LIBLAS_LASFILE_HPP_INCLUDED
 
44
#define LIBLAS_LASFILE_HPP_INCLUDED
 
45
 
 
46
#include <liblas/detail/file.hpp> // complete type required
 
47
#include <liblas/detail/sharedptr.hpp>
 
48
#include <string>
 
49
#include <cassert>
 
50
 
 
51
namespace liblas {
 
52
 
 
53
/// \todo to be documented
 
54
class LASFile
 
55
{
 
56
public:
 
57
 
 
58
    enum Mode
 
59
    {
 
60
        eRead = 0,
 
61
        eWrite = 1,
 
62
        eAppend = 2
 
63
    };
 
64
 
 
65
    LASFile();
 
66
    LASFile(std::string const& filename);
 
67
    LASFile(std::string const& filename, LASHeader const& header, Mode mode);
 
68
    LASFile(LASFile const& other);
 
69
    LASFile& operator=(LASFile const& rhs);
 
70
 
 
71
    bool IsNull() const;
 
72
    std::string GetName() const;
 
73
    Mode GetMode() const;
 
74
    LASHeader const& GetHeader() const;
 
75
    LASReader& GetReader();
 
76
    LASWriter& GetWriter();
 
77
 
 
78
private:
 
79
 
 
80
    detail::SharedPtr<detail::FileImpl> m_pimpl;
 
81
};
 
82
 
 
83
} // namespace liblas
 
84
 
 
85
#endif // LIBLAS_LASFILE_HPP_INCLUDED