libopenraw  0.3.7
tiffepfile.hpp
1 /* -*- Mode: C++ -*- */
2 /*
3  * libopenraw - tiffepfile.h
4  *
5  * Copyright (C) 2007-2020 Hubert Figuière
6  * Copyright (C) 2008 Novell, Inc.
7  *
8  * This library is free software: you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public License
10  * as published by the Free Software Foundation, either version 3 of
11  * the License, or (at your option) any later version.
12  *
13  * This library is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with this library. If not, see
20  * <http://www.gnu.org/licenses/>.
21  */
22 
23 
24 #pragma once
25 
26 #include "ifddir.hpp"
27 #include "ifdfile.hpp"
28 #include "io/stream.hpp"
29 #include "rawfile.hpp"
30 
31 namespace OpenRaw {
32 namespace Internals {
33 
43  : public IfdFile
44 {
45 public:
46  TiffEpFile(const IO::Stream::Ptr &s, Type _type);
47 
48 protected:
49 
51  virtual IfdDir::Ref _locateCfaIfd() override;
52 };
53 
55 }
56 }
std::shared_ptr< Stream > Ptr
Definition: stream.hpp:47
std::shared_ptr< IfdDir > Ref
Shared ptr of an IfdDir.
Definition: ifddir.hpp:56
A generic IFD (TIFF) based raw file.
Definition: ifdfile.hpp:51
TIFF.EP conformant files.
Definition: tiffepfile.hpp:44
virtual IfdDir::Ref _locateCfaIfd() override
Locate the IFD for the raw data.
Definition: tiffepfile.cpp:45
or_rawfile_type
Types of RAW files.
Definition: consts.h:59
Global namespace for libopenraw.
Definition: arwfile.cpp:29