1234567891011121314151617181920212223242526272829 |
- #ifndef BOOST_GIL_GRAY_HPP
- #define BOOST_GIL_GRAY_HPP
- #include <boost/gil/utilities.hpp>
- #include <boost/gil/detail/mp11.hpp>
- namespace boost { namespace gil {
- struct gray_color_t {};
- using gray_t = mp11::mp_list<gray_color_t>;
- using gray_layout_t = layout<gray_t>;
- }}
- #endif
|