00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013 #ifndef GIL_GRAY_H
00014 #define GIL_GRAY_H
00015
00023
00024 #include "gil_config.hpp"
00025 #include "utilities.hpp"
00026 #include <boost/type_traits.hpp>
00027 #include <boost/mpl/range_c.hpp>
00028 #include <boost/mpl/vector_c.hpp>
00029
00030 namespace boost { namespace gil {
00031
00034 struct gray_color_t {};
00035
00037 typedef mpl::vector1<gray_color_t> gray_t;
00038
00040 typedef layout<gray_t> gray_layout_t;
00041
00042 } }
00043
00044 #endif
00045