gray.hppGo to the documentation of this file.00001 /* 00002 Copyright 2005-2007 Adobe Systems Incorporated 00003 00004 Use, modification and distribution are subject to the Boost Software License, 00005 Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at 00006 http://www.boost.org/LICENSE_1_0.txt). 00007 00008 See http://opensource.adobe.com/gil for most recent version including documentation. 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 } } // namespace boost::gil 00043 00044 #endif 00045 Generated on Sat May 2 13:50:13 2009 for Generic Image Library by 1.5.6 |