1 #ifndef color_generic_constant_chocolate
2 #define color_generic_constant_chocolate
3 
4 // ::color::constant::chocolate( c )
5 
6 #include "./base.hpp"
7 
8 namespace color
9  {
10   namespace constant
11    {
12 
13     namespace _internal
14      {
15       namespace w3c
16        {
17         struct chocolate_t{};
18        }
19      }
20 
21     namespace w3c
22      {
23       typedef  ::color::constant::base< ::color::constant::_internal::w3c::chocolate_t > chocolate_t;
24      }
25 
26     // Primary value is w3c
27     typedef ::color::constant::w3c::chocolate_t chocolate_t;
28 
29    }
30  }
31 
32 #endif