1 #ifndef color_hsv_akin_luv
2 #define color_hsv_akin_luv
3 
4 #include "../../generic/akin/hsv.hpp"
5 #include "../category.hpp"
6 #include "../../luv/category.hpp"
7 
8 namespace color
9  {
10   namespace akin
11    {
12 
13     template
14      <
15        typename tag_name
16 
17 
18      >
19      struct hsv< ::color::category::luv< tag_name >  >
20       {
21        public:
22          typedef ::color::category::hsv< tag_name > akin_type;
23       };
24 
25    }
26  }
27 
28 #endif
29