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
0003
0004
0005
0006
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
0017
0018 struct gray_color_t {};
0019
0020
0021 using gray_t = mp11::mp_list<gray_color_t>;
0022
0023
0024 using gray_layout_t = layout<gray_t>;
0025
0026 }}
0027
0028 #endif
0029