Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:37:01

0001 //
0002 // Copyright 2005-2007 Adobe Systems Incorporated
0003 //
0004 // Distributed under the Boost Software License, Version 1.0
0005 // See accompanying file LICENSE_1_0.txt or copy at
0006 // http://www.boost.org/LICENSE_1_0.txt
0007 //
0008 #ifndef BOOST_GIL_EXTENSION_TOOLBOX_DYNAMIC_IMAGES_HPP
0009 #define BOOST_GIL_EXTENSION_TOOLBOX_DYNAMIC_IMAGES_HPP
0010 
0011 #include <boost/gil/extension/dynamic_image/dynamic_image_all.hpp>
0012 
0013 namespace boost { namespace gil {
0014 
0015 // need this for various meta functions.
0016 struct any_image_pixel_t       {};
0017 struct any_image_channel_t     {};
0018 struct any_image_color_space_t {};
0019 
0020 template<>
0021 struct color_space_type< any_image_pixel_t >
0022 {
0023     using type = any_image_color_space_t;
0024 };
0025 
0026 }} // namespace boost::gil
0027 
0028 #endif