Chris@16: /* Chris@16: Copyright 2005-2007 Adobe Systems Incorporated Chris@16: Chris@16: Use, modification and distribution are subject to the Boost Software License, Chris@16: Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at Chris@16: http://www.boost.org/LICENSE_1_0.txt). Chris@16: Chris@16: See http://opensource.adobe.com/gil for most recent version including documentation. Chris@16: */ Chris@16: Chris@16: /*************************************************************************************************/ Chris@16: Chris@16: #ifndef GIL_GRAY_H Chris@16: #define GIL_GRAY_H Chris@16: Chris@16: //////////////////////////////////////////////////////////////////////////////////////// Chris@16: /// \file Chris@16: /// \brief Support for grayscale color space and variants Chris@16: /// \author Lubomir Bourdev and Hailin Jin \n Chris@16: /// Adobe Systems Incorporated Chris@16: /// \date 2005-2007 \n Last updated on March 8, 2006 Chris@16: //////////////////////////////////////////////////////////////////////////////////////// Chris@16: Chris@16: #include "gil_config.hpp" Chris@16: #include "utilities.hpp" Chris@16: #include Chris@16: #include Chris@16: #include Chris@16: Chris@16: namespace boost { namespace gil { Chris@16: Chris@16: /// \ingroup ColorNameModel Chris@16: /// \brief Gray Chris@16: struct gray_color_t {}; Chris@16: Chris@16: /// \ingroup ColorSpaceModel Chris@16: typedef mpl::vector1 gray_t; Chris@16: Chris@16: /// \ingroup LayoutModel Chris@16: typedef layout gray_layout_t; Chris@16: Chris@16: } } // namespace boost::gil Chris@16: Chris@16: #endif Chris@16: