gil_all.hpp 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. /*
  2. Copyright 2005-2007 Adobe Systems Incorporated
  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. See http://opensource.adobe.com/gil for most recent version including documentation.
  7. */
  8. /*************************************************************************************************/
  9. #ifndef GIL_ALL_HPP
  10. #define GIL_ALL_HPP
  11. ////////////////////////////////////////////////////////////////////////////////////////
  12. /// \file
  13. /// \brief Includes all GIL files for convenience
  14. /// \author Lubomir Bourdev and Hailin Jin \n
  15. /// Adobe Systems Incorporated
  16. ///
  17. ///
  18. ////////////////////////////////////////////////////////////////////////////////////////
  19. #include "gil_config.hpp"
  20. #include "channel_algorithm.hpp"
  21. #include "algorithm.hpp"
  22. #include "pixel.hpp"
  23. #include "packed_pixel.hpp"
  24. #include "planar_pixel_reference.hpp"
  25. #include "planar_pixel_iterator.hpp"
  26. #include "pixel_iterator_adaptor.hpp"
  27. #include "step_iterator.hpp"
  28. #include "iterator_from_2d.hpp"
  29. #include "image.hpp"
  30. #include "image_view_factory.hpp"
  31. #include "typedefs.hpp"
  32. #include "metafunctions.hpp"
  33. #include "color_convert.hpp"
  34. #include "device_n.hpp"
  35. #include "virtual_locator.hpp"
  36. #include "bit_aligned_pixel_iterator.hpp"
  37. // Uncomment this line to help in porting your code from an older version of GIL
  38. //#include "deprecated.hpp"
  39. #endif