12345678910111213141516171819202122232425262728 |
- #ifndef BOOST_GIL_EXTENSION_TOOLBOX_DYNAMIC_IMAGES_HPP
- #define BOOST_GIL_EXTENSION_TOOLBOX_DYNAMIC_IMAGES_HPP
- #include <boost/gil/extension/dynamic_image/dynamic_image_all.hpp>
- namespace boost { namespace gil {
- struct any_image_pixel_t {};
- struct any_image_channel_t {};
- struct any_image_color_space_t {};
- template<>
- struct color_space_type< any_image_pixel_t >
- {
- using type = any_image_color_space_t;
- };
- }}
- #endif
|