concepts.hpp 897 B

1234567891011121314151617181920212223242526
  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_CONCEPTS_HPP
  9. #define BOOST_GIL_CONCEPTS_HPP
  10. // TODO: Remove and prefer individual includes from boost/gil/concepts/*.hpp?
  11. #include <boost/gil/concepts/channel.hpp>
  12. #include <boost/gil/concepts/color.hpp>
  13. #include <boost/gil/concepts/color_base.hpp>
  14. #include <boost/gil/concepts/concept_check.hpp>
  15. #include <boost/gil/concepts/image.hpp>
  16. #include <boost/gil/concepts/image_view.hpp>
  17. #include <boost/gil/concepts/pixel.hpp>
  18. #include <boost/gil/concepts/pixel_based.hpp>
  19. #include <boost/gil/concepts/pixel_dereference.hpp>
  20. #include <boost/gil/concepts/pixel_iterator.hpp>
  21. #include <boost/gil/concepts/pixel_locator.hpp>
  22. #include <boost/gil/concepts/point.hpp>
  23. #endif