TuttleOFX
1
|
00001 #ifndef _TERRY_COLOR_LAYOUT_CMYK_HPP_ 00002 #define _TERRY_COLOR_LAYOUT_CMYK_HPP_ 00003 00004 #include "rgb.hpp" 00005 00006 #include <boost/gil/cmyk.hpp> 00007 00008 namespace terry { 00009 namespace color { 00010 namespace layout { 00011 00012 /// \addtogroup ColorNameModel 00013 /// \{ 00014 namespace cmyk 00015 { 00016 /// \brief Cyan 00017 using boost::gil::cyan_t; 00018 /// \brief Magenta 00019 using boost::gil::magenta_t; 00020 /// \brief Yellow 00021 using boost::gil::yellow_t; 00022 /// \brief Black 00023 using boost::gil::black_t; 00024 } 00025 /// \} 00026 00027 /// \addtogroup ColorNameModel 00028 /// \{ 00029 using boost::gil::cmyk_t; 00030 using boost::gil::cmyk_layout_t; 00031 /// \} 00032 00033 00034 00035 } 00036 } 00037 } 00038 00039 00040 #endif