~ubuntu-branches/ubuntu/trusty/liblas/trusty-proposed

« back to all changes in this revision

Viewing changes to include/liblas/detail/file.hpp

  • Committer: Package Import Robot
  • Author(s): Francesco Paolo Lovergine
  • Date: 2014-01-05 17:00:29 UTC
  • mfrom: (7.1.2 sid)
  • Revision ID: package-import@ubuntu.com-20140105170029-ddtp0j63x5jvck2u
Tags: 1.7.0+dfsg-2
Fixed missing linking of system boost component.
(closes: #733282)

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_DETAIL_FILE_HPP_INCLUDED
44
 
#define LIBLAS_DETAIL_FILE_HPP_INCLUDED
45
 
 
46
 
#include <liblas/lasreader.hpp>
47
 
#include <liblas/laswriter.hpp>
48
 
#include <memory>
49
 
#include <string>
50
 
#include <fstream>
51
 
#include <iostream>
52
 
#include <stdexcept>
53
 
#include <cassert>
54
 
 
55
 
namespace liblas { namespace detail {
56
 
 
57
 
class FileImpl
58
 
{
59
 
public:
60
 
 
61
 
    FileImpl(std::string const& filename);
62
 
    FileImpl(std::string const& filename, LASHeader const& header, int mode);
63
 
    ~FileImpl();
64
 
 
65
 
    std::string GetName() const;
66
 
    int GetMode() const;
67
 
    LASHeader const& GetHeader() const;
68
 
    LASReader& GetReader();
69
 
    LASWriter& GetWriter();
70
 
 
71
 
private:
72
 
 
73
 
    // Blocked copying operations, declared but not defined.
74
 
    FileImpl(FileImpl const& other);
75
 
    FileImpl& operator=(FileImpl const& rhs);
76
 
 
77
 
    int m_mode;
78
 
    std::string m_filename;
79
 
    std::istream* m_istrm;
80
 
    std::ostream* m_ostrm;
81
 
    LASReader* m_reader;
82
 
    LASWriter* m_writer;
83
 
    LASHeader m_header;
84
 
 
85
 
    void throw_no_file_error() const;
86
 
};
87
 
 
88
 
}} // namespace liblas::detail
89
 
 
90
 
#endif // LIBLAS_DETAIL_FILE_HPP_INCLUDED