TuttleOFX  1
Yxy.hpp
Go to the documentation of this file.
00001 #ifndef _TERRY_COLOR_LAYOUT_YXY_HPP_
00002 #define _TERRY_COLOR_LAYOUT_YXY_HPP_
00003 
00004 #include "rgb.hpp"
00005 
00006 namespace terry {
00007 namespace color {
00008 namespace layout {
00009 
00010 ////////////////////////////////////////////////////////////////////////////////
00011 // Yxy //
00012 
00013 /// \addtogroup ColorNameModel
00014 /// \{
00015 namespace Yxy
00016 {
00017 /// \brief Y
00018 struct Y_t {};
00019 /// \brief x
00020 struct x_t {};
00021 /// \brief y
00022 struct y_t {};
00023 }
00024 /// \}
00025 
00026 /// \ingroup ColorSpaceModel
00027 typedef boost::mpl::vector3< Yxy::Y_t
00028                     , Yxy::x_t
00029                     , Yxy::y_t
00030                     > Yxy_t;
00031 
00032 }
00033 }
00034 }
00035 
00036 
00037 #endif