]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/boost/gil/extension/toolbox/dynamic_images.hpp
import new upstream nautilus stable release 14.2.8
[ceph.git] / ceph / src / boost / boost / gil / extension / toolbox / dynamic_images.hpp
1 //
2 // Copyright 2005-2007 Adobe Systems Incorporated
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_TOOLBOX_DYNAMIC_IMAGES_HPP
9 #define BOOST_GIL_EXTENSION_TOOLBOX_DYNAMIC_IMAGES_HPP
10
11 #include <boost/gil/extension/dynamic_image/dynamic_image_all.hpp>
12
13 namespace boost { namespace gil {
14
15 // need this for various meta functions.
16 struct any_image_pixel_t {};
17 struct any_image_channel_t {};
18 struct any_image_color_space_t {};
19
20 template<>
21 struct color_space_type< any_image_pixel_t >
22 {
23 using type = any_image_color_space_t;
24 };
25
26 }} // namespace boost::gil
27
28 #endif