Back to home page

EIC code displayed by LXR

 
 

    


Warning, file /include/boost/gil/gray.hpp was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).

0001 //
0002 // Copyright 2005-2007 Adobe Systems Incorporated
0003 //
0004 // Distributed under the Boost Software License, Version 1.0
0005 // See accompanying file LICENSE_1_0.txt or copy at
0006 // http://www.boost.org/LICENSE_1_0.txt
0007 //
0008 #ifndef BOOST_GIL_GRAY_HPP
0009 #define BOOST_GIL_GRAY_HPP
0010 
0011 #include <boost/gil/utilities.hpp>
0012 #include <boost/gil/detail/mp11.hpp>
0013 
0014 namespace boost { namespace gil {
0015 
0016 /// \ingroup ColorNameModel
0017 /// \brief Gray
0018 struct gray_color_t {};
0019 
0020 /// \ingroup ColorSpaceModel
0021 using gray_t = mp11::mp_list<gray_color_t>;
0022 
0023 /// \ingroup LayoutModel
0024 using gray_layout_t = layout<gray_t>;
0025 
0026 }}  // namespace boost::gil
0027 
0028 #endif
0029