File indexing completed on 2025-01-18 09:37:01
0001
0002
0003
0004
0005
0006
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
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 }}
0027
0028 #endif