read.hpp 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. /*
  2. Copyright 2013 Christian Henning
  3. Use, modification and distribution are subject to the Boost Software License,
  4. Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
  5. http://www.boost.org/LICENSE_1_0.txt).
  6. */
  7. /*************************************************************************************************/
  8. #ifndef BOOST_GIL_EXTENSION_IO_RAW_READ_HPP
  9. #define BOOST_GIL_EXTENSION_IO_RAW_READ_HPP
  10. ////////////////////////////////////////////////////////////////////////////////////////
  11. /// \file
  12. /// \brief
  13. /// \author Olivier Tournaire \n
  14. ///
  15. /// \date 2011 \n
  16. ///
  17. ////////////////////////////////////////////////////////////////////////////////////////
  18. #include <boost/gil/extension/io/raw/tags.hpp>
  19. #include <boost/gil/extension/io/raw/detail/supported_types.hpp>
  20. #include <boost/gil/extension/io/raw/detail/read.hpp>
  21. #include <boost/gil/io/get_reader.hpp>
  22. #include <boost/gil/io/make_backend.hpp>
  23. #include <boost/gil/io/make_reader.hpp>
  24. #include <boost/gil/io/make_dynamic_image_reader.hpp>
  25. #include <boost/gil/io/make_scanline_reader.hpp>
  26. #include <boost/gil/io/read_image_info.hpp>
  27. #include <boost/gil/io/read_view.hpp>
  28. #include <boost/gil/io/read_image.hpp>
  29. #include <boost/gil/io/read_and_convert_image.hpp>
  30. #include <boost/gil/io/read_and_convert_view.hpp>
  31. #include <boost/gil/io/scanline_read_iterator.hpp>
  32. #endif