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

Private GIT Repository
727e06be6d9ce8fd7f44650d14883e784de20c68
[canny.git] / stc / exp / ml_stc_linux_make_v1.0 / include / boost / mpl / aux_ / preprocessor / add.hpp
1 \r
2 #ifndef BOOST_MPL_AUX_PREPROCESSOR_ADD_HPP_INCLUDED\r
3 #define BOOST_MPL_AUX_PREPROCESSOR_ADD_HPP_INCLUDED\r
4 \r
5 // Copyright Aleksey Gurtovoy 2002-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: add.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 #if !defined(BOOST_MPL_CFG_NO_OWN_PP_PRIMITIVES)\r
20 \r
21 #   include <boost/mpl/aux_/preprocessor/tuple.hpp>\r
22 \r
23 #if defined(BOOST_MPL_CFG_BROKEN_PP_MACRO_EXPANSION)\r
24 #   include <boost/preprocessor/cat.hpp>\r
25 \r
26 #   define BOOST_MPL_PP_ADD(i,j) \\r
27     BOOST_MPL_PP_ADD_DELAY(i,j) \\r
28     /**/\r
29 \r
30 #   define BOOST_MPL_PP_ADD_DELAY(i,j) \\r
31     BOOST_PP_CAT(BOOST_MPL_PP_TUPLE_11_ELEM_##i,BOOST_MPL_PP_ADD_##j) \\r
32     /**/\r
33 #else\r
34 #   define BOOST_MPL_PP_ADD(i,j) \\r
35     BOOST_MPL_PP_ADD_DELAY(i,j) \\r
36     /**/\r
37 \r
38 #   define BOOST_MPL_PP_ADD_DELAY(i,j) \\r
39     BOOST_MPL_PP_TUPLE_11_ELEM_##i BOOST_MPL_PP_ADD_##j \\r
40     /**/\r
41 #endif\r
42 \r
43 #   define BOOST_MPL_PP_ADD_0 (0,1,2,3,4,5,6,7,8,9,10)\r
44 #   define BOOST_MPL_PP_ADD_1 (1,2,3,4,5,6,7,8,9,10,0)\r
45 #   define BOOST_MPL_PP_ADD_2 (2,3,4,5,6,7,8,9,10,0,0)\r
46 #   define BOOST_MPL_PP_ADD_3 (3,4,5,6,7,8,9,10,0,0,0)\r
47 #   define BOOST_MPL_PP_ADD_4 (4,5,6,7,8,9,10,0,0,0,0)\r
48 #   define BOOST_MPL_PP_ADD_5 (5,6,7,8,9,10,0,0,0,0,0)\r
49 #   define BOOST_MPL_PP_ADD_6 (6,7,8,9,10,0,0,0,0,0,0)\r
50 #   define BOOST_MPL_PP_ADD_7 (7,8,9,10,0,0,0,0,0,0,0)\r
51 #   define BOOST_MPL_PP_ADD_8 (8,9,10,0,0,0,0,0,0,0,0)\r
52 #   define BOOST_MPL_PP_ADD_9 (9,10,0,0,0,0,0,0,0,0,0)\r
53 #   define BOOST_MPL_PP_ADD_10 (10,0,0,0,0,0,0,0,0,0,0)\r
54 \r
55 #else\r
56 \r
57 #   include <boost/preprocessor/arithmetic/add.hpp>\r
58 \r
59 #   define BOOST_MPL_PP_ADD(i,j) \\r
60     BOOST_PP_ADD(i,j) \\r
61     /**/\r
62     \r
63 #endif \r
64 \r
65 #endif // BOOST_MPL_AUX_PREPROCESSOR_ADD_HPP_INCLUDED\r