dynamic_images.hpp 771 B

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