]>
Commit | Line | Data |
---|---|---|
92f5a8d4 TL |
1 | // |
2 | // Copyright 2007-2008 Christian Henning | |
3 | // | |
4 | // Distributed under the Boost Software License, Version 1.0 | |
5 | // See accompanying file LICENSE_1_0.txt or copy at | |
6 | // http://www.boost.org/LICENSE_1_0.txt | |
7 | // | |
8 | #ifndef BOOST_GIL_EXTENSION_IO_TIFF_READ_HPP | |
9 | #define BOOST_GIL_EXTENSION_IO_TIFF_READ_HPP | |
10 | ||
11 | #define BOOST_GIL_EXTENSION_IO_TIFF_READ_ENABLED // TODO: Document, explain, review | |
12 | ||
13 | #include <boost/gil/extension/io/tiff/tags.hpp> | |
14 | #include <boost/gil/extension/io/tiff/detail/read.hpp> | |
15 | #include <boost/gil/extension/io/tiff/detail/scanline_read.hpp> | |
16 | #include <boost/gil/extension/io/tiff/detail/supported_types.hpp> | |
17 | ||
18 | #include <boost/gil/io/get_reader.hpp> | |
19 | #include <boost/gil/io/make_backend.hpp> | |
20 | #include <boost/gil/io/make_dynamic_image_reader.hpp> | |
21 | #include <boost/gil/io/make_reader.hpp> | |
22 | #include <boost/gil/io/make_scanline_reader.hpp> | |
23 | #include <boost/gil/io/read_and_convert_image.hpp> | |
24 | #include <boost/gil/io/read_and_convert_view.hpp> | |
25 | #include <boost/gil/io/read_image.hpp> | |
26 | #include <boost/gil/io/read_image_info.hpp> | |
27 | #include <boost/gil/io/read_view.hpp> | |
28 | #include <boost/gil/io/scanline_read_iterator.hpp> | |
29 | ||
30 | #endif |