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

Private GIT Repository
24f3071edded1935f9d002f6038360b6fe820bb8
[canny.git] / stc / exp / ml_stc_linux_make_v1.0 / include / boost / mpl / aux_ / preprocessor / params.hpp
1 \r
2 #ifndef BOOST_MPL_AUX_PREPROCESSOR_PARAMS_HPP_INCLUDED\r
3 #define BOOST_MPL_AUX_PREPROCESSOR_PARAMS_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: params.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_PARAMS(0,T): <nothing>\r
20 // BOOST_MPL_PP_PARAMS(1,T): T1\r
21 // BOOST_MPL_PP_PARAMS(2,T): T1, T2\r
22 // BOOST_MPL_PP_PARAMS(n,T): T1, T2, .., Tn\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_PARAMS(n,p) \\r
29     BOOST_PP_CAT(BOOST_MPL_PP_PARAMS_,n)(p) \\r
30     /**/\r
31 \r
32 #   define BOOST_MPL_PP_PARAMS_0(p)\r
33 #   define BOOST_MPL_PP_PARAMS_1(p) p##1\r
34 #   define BOOST_MPL_PP_PARAMS_2(p) p##1,p##2\r
35 #   define BOOST_MPL_PP_PARAMS_3(p) p##1,p##2,p##3\r
36 #   define BOOST_MPL_PP_PARAMS_4(p) p##1,p##2,p##3,p##4\r
37 #   define BOOST_MPL_PP_PARAMS_5(p) p##1,p##2,p##3,p##4,p##5\r
38 #   define BOOST_MPL_PP_PARAMS_6(p) p##1,p##2,p##3,p##4,p##5,p##6\r
39 #   define BOOST_MPL_PP_PARAMS_7(p) p##1,p##2,p##3,p##4,p##5,p##6,p##7\r
40 #   define BOOST_MPL_PP_PARAMS_8(p) p##1,p##2,p##3,p##4,p##5,p##6,p##7,p##8\r
41 #   define BOOST_MPL_PP_PARAMS_9(p) p##1,p##2,p##3,p##4,p##5,p##6,p##7,p##8,p##9\r
42 \r
43 #else\r
44 \r
45 #   include <boost/preprocessor/comma_if.hpp>\r
46 #   include <boost/preprocessor/repeat.hpp>\r
47 #   include <boost/preprocessor/inc.hpp>\r
48 #   include <boost/preprocessor/cat.hpp>\r
49 \r
50 #   define BOOST_MPL_PP_AUX_PARAM_FUNC(unused, i, param) \\r
51     BOOST_PP_COMMA_IF(i) \\r
52     BOOST_PP_CAT(param, BOOST_PP_INC(i)) \\r
53     /**/\r
54 \r
55 #   define BOOST_MPL_PP_PARAMS(n, param) \\r
56     BOOST_PP_REPEAT( \\r
57           n \\r
58         , BOOST_MPL_PP_AUX_PARAM_FUNC \\r
59         , param \\r
60         ) \\r
61     /**/\r
62 \r
63 #endif \r
64 \r
65 #endif // BOOST_MPL_AUX_PREPROCESSOR_PARAMS_HPP_INCLUDED\r