dynamic_images.hpp 712 B

12345678910111213141516171819202122232425262728
  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. #include <boost/gil/extension/dynamic_image/dynamic_image_all.hpp>
  11. namespace boost { namespace gil {
  12. // need this for various meta functions.
  13. struct any_image_pixel_t {};
  14. struct any_image_channel_t {};
  15. struct any_image_color_space_t {};
  16. template<>
  17. struct color_space_type< any_image_pixel_t >
  18. {
  19. using type = any_image_color_space_t;
  20. };
  21. }} // namespace boost::gil
  22. #endif