gray.hpp 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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_GRAY_H
  10. #define GIL_GRAY_H
  11. ////////////////////////////////////////////////////////////////////////////////////////
  12. /// \file
  13. /// \brief Support for grayscale color space and variants
  14. /// \author Lubomir Bourdev and Hailin Jin \n
  15. /// Adobe Systems Incorporated
  16. /// \date 2005-2007 \n Last updated on March 8, 2006
  17. ////////////////////////////////////////////////////////////////////////////////////////
  18. #include "gil_config.hpp"
  19. #include "utilities.hpp"
  20. #include <boost/type_traits.hpp>
  21. #include <boost/mpl/range_c.hpp>
  22. #include <boost/mpl/vector_c.hpp>
  23. namespace boost { namespace gil {
  24. /// \ingroup ColorNameModel
  25. /// \brief Gray
  26. struct gray_color_t {};
  27. /// \ingroup ColorSpaceModel
  28. typedef mpl::vector1<gray_color_t> gray_t;
  29. /// \ingroup LayoutModel
  30. typedef layout<gray_t> gray_layout_t;
  31. } } // namespace boost::gil
  32. #endif