]> AND Private Git Repository - canny.git/blob - stc/exp/ml_stc_linux_make_v1.0/include/boost/mpl/aux_/preprocessor/enum.hpp
Logo AND Algorithmique Numérique Distribuée

Private GIT Repository
8c90859da33f40d58b633ae61c427255d0cc47e8
[canny.git] / stc / exp / ml_stc_linux_make_v1.0 / include / boost / mpl / aux_ / preprocessor / enum.hpp
1 \r
2 #ifndef BOOST_MPL_AUX_PREPROCESSOR_ENUM_HPP_INCLUDED\r
3 #define BOOST_MPL_AUX_PREPROCESSOR_ENUM_HPP_INCLUDED\r
4 \r
5 // Copyright Aleksey Gurtovoy 2000-2004\r
6 //\r
7 // Distributed under the Boost Software License, Version 1.0. \r
8 // (See accompanying file LICENSE_1_0.txt or copy at \r
9 // http://www.boost.org/LICENSE_1_0.txt)\r
10 //\r
11 // See http://www.boost.org/libs/mpl for documentation.\r
12 \r
13 // $Id: enum.hpp 49267 2008-10-11 06:19:02Z agurtovoy $\r
14 // $Date: 2008-10-11 02:19:02 -0400 (Sat, 11 Oct 2008) $\r
15 // $Revision: 49267 $\r
16 \r
17 #include <boost/mpl/aux_/config/preprocessor.hpp>\r
18 \r
19 // BOOST_MPL_PP_ENUM(0,int): <nothing>\r
20 // BOOST_MPL_PP_ENUM(1,int): int\r
21 // BOOST_MPL_PP_ENUM(2,int): int, int\r
22 // BOOST_MPL_PP_ENUM(n,int): int, int, .., int\r
23 \r
24 #if !defined(BOOST_MPL_CFG_NO_OWN_PP_PRIMITIVES)\r
25 \r
26 #   include <boost/preprocessor/cat.hpp>\r
27 \r
28 #   define BOOST_MPL_PP_ENUM(n, param) \\r
29     BOOST_PP_CAT(BOOST_MPL_PP_ENUM_,n)(param) \\r
30     /**/\r
31     \r
32 #   define BOOST_MPL_PP_ENUM_0(p)\r
33 #   define BOOST_MPL_PP_ENUM_1(p) p\r
34 #   define BOOST_MPL_PP_ENUM_2(p) p,p\r
35 #   define BOOST_MPL_PP_ENUM_3(p) p,p,p\r
36 #   define BOOST_MPL_PP_ENUM_4(p) p,p,p,p\r
37 #   define BOOST_MPL_PP_ENUM_5(p) p,p,p,p,p\r
38 #   define BOOST_MPL_PP_ENUM_6(p) p,p,p,p,p,p\r
39 #   define BOOST_MPL_PP_ENUM_7(p) p,p,p,p,p,p,p\r
40 #   define BOOST_MPL_PP_ENUM_8(p) p,p,p,p,p,p,p,p\r
41 #   define BOOST_MPL_PP_ENUM_9(p) p,p,p,p,p,p,p,p,p\r
42 \r
43 #else\r
44 \r
45 #   include <boost/preprocessor/comma_if.hpp>\r
46 #   include <boost/preprocessor/repeat.hpp>\r
47 \r
48 #   define BOOST_MPL_PP_AUX_ENUM_FUNC(unused, i, param) \\r
49     BOOST_PP_COMMA_IF(i) param \\r
50     /**/\r
51 \r
52 #   define BOOST_MPL_PP_ENUM(n, param) \\r
53     BOOST_PP_REPEAT( \\r
54           n \\r
55         , BOOST_MPL_PP_AUX_ENUM_FUNC \\r
56         , param \\r
57         ) \\r
58     /**/\r
59 \r
60 #endif\r
61 \r
62 #endif // BOOST_MPL_AUX_PREPROCESSOR_ENUM_HPP_INCLUDED\r