Jeff Thompson | a28eed8 | 2013-08-22 16:21:10 -0700 | [diff] [blame] | 1 | |
Jeff Thompson | 3d613fd | 2013-10-15 15:39:04 -0700 | [diff] [blame] | 2 | #if !defined(NDNBOOST_PP_IS_ITERATING) |
Jeff Thompson | a28eed8 | 2013-08-22 16:21:10 -0700 | [diff] [blame] | 3 | |
| 4 | ///// header body |
| 5 | |
Jeff Thompson | 3d613fd | 2013-10-15 15:39:04 -0700 | [diff] [blame] | 6 | #ifndef NDNBOOST_MPL_APPLY_FWD_HPP_INCLUDED |
| 7 | #define NDNBOOST_MPL_APPLY_FWD_HPP_INCLUDED |
Jeff Thompson | a28eed8 | 2013-08-22 16:21:10 -0700 | [diff] [blame] | 8 | |
| 9 | // Copyright Aleksey Gurtovoy 2000-2004 |
| 10 | // |
| 11 | // Distributed under the Boost Software License, Version 1.0. |
| 12 | // (See accompanying file LICENSE_1_0.txt or copy at |
| 13 | // http://www.boost.org/LICENSE_1_0.txt) |
| 14 | // |
| 15 | // See http://www.boost.org/libs/mpl for documentation. |
| 16 | |
| 17 | // $Id: apply_fwd.hpp 49267 2008-10-11 06:19:02Z agurtovoy $ |
| 18 | // $Date: 2008-10-10 23:19:02 -0700 (Fri, 10 Oct 2008) $ |
| 19 | // $Revision: 49267 $ |
| 20 | |
Jeff Thompson | 3d613fd | 2013-10-15 15:39:04 -0700 | [diff] [blame] | 21 | #if !defined(NDNBOOST_MPL_PREPROCESSING_MODE) |
Jeff Thompson | a28eed8 | 2013-08-22 16:21:10 -0700 | [diff] [blame] | 22 | # include <ndnboost/mpl/aux_/na.hpp> |
| 23 | #endif |
| 24 | |
| 25 | #include <ndnboost/mpl/aux_/config/use_preprocessed.hpp> |
| 26 | |
Jeff Thompson | 3d613fd | 2013-10-15 15:39:04 -0700 | [diff] [blame] | 27 | #if !defined(NDNBOOST_MPL_CFG_NO_PREPROCESSED_HEADERS) \ |
| 28 | && !defined(NDNBOOST_MPL_PREPROCESSING_MODE) |
Jeff Thompson | a28eed8 | 2013-08-22 16:21:10 -0700 | [diff] [blame] | 29 | |
Jeff Thompson | 3d613fd | 2013-10-15 15:39:04 -0700 | [diff] [blame] | 30 | # define NDNBOOST_MPL_PREPROCESSED_HEADER apply_fwd.hpp |
Jeff Thompson | a28eed8 | 2013-08-22 16:21:10 -0700 | [diff] [blame] | 31 | # include <ndnboost/mpl/aux_/include_preprocessed.hpp> |
| 32 | |
| 33 | #else |
| 34 | |
| 35 | # include <ndnboost/mpl/limits/arity.hpp> |
| 36 | # include <ndnboost/mpl/aux_/preprocessor/params.hpp> |
| 37 | # include <ndnboost/mpl/aux_/preprocessor/default_params.hpp> |
| 38 | # include <ndnboost/mpl/aux_/config/ctps.hpp> |
| 39 | # include <ndnboost/mpl/aux_/nttp_decl.hpp> |
| 40 | |
| 41 | # include <ndnboost/preprocessor/comma_if.hpp> |
| 42 | # include <ndnboost/preprocessor/iterate.hpp> |
| 43 | # include <ndnboost/preprocessor/cat.hpp> |
| 44 | |
| 45 | // agurt, 15/jan/02: top-level 'apply' template gives an ICE on MSVC |
| 46 | // (for known reasons) |
Jeff Thompson | 3d613fd | 2013-10-15 15:39:04 -0700 | [diff] [blame] | 47 | #if NDNBOOST_WORKAROUND(NDNBOOST_MSVC, < 1300) |
| 48 | # define NDNBOOST_MPL_CFG_NO_APPLY_TEMPLATE |
Jeff Thompson | a28eed8 | 2013-08-22 16:21:10 -0700 | [diff] [blame] | 49 | #endif |
| 50 | |
| 51 | namespace ndnboost { namespace mpl { |
| 52 | |
| 53 | // local macro, #undef-ined at the end of the header |
| 54 | # define AUX778076_APPLY_DEF_PARAMS(param, value) \ |
Jeff Thompson | 3d613fd | 2013-10-15 15:39:04 -0700 | [diff] [blame] | 55 | NDNBOOST_MPL_PP_DEFAULT_PARAMS( \ |
| 56 | NDNBOOST_MPL_LIMIT_METAFUNCTION_ARITY \ |
Jeff Thompson | a28eed8 | 2013-08-22 16:21:10 -0700 | [diff] [blame] | 57 | , param \ |
| 58 | , value \ |
| 59 | ) \ |
| 60 | /**/ |
| 61 | |
| 62 | # define AUX778076_APPLY_N_COMMA_PARAMS(n, param) \ |
Jeff Thompson | 3d613fd | 2013-10-15 15:39:04 -0700 | [diff] [blame] | 63 | NDNBOOST_PP_COMMA_IF(n) \ |
| 64 | NDNBOOST_MPL_PP_PARAMS(n, param) \ |
Jeff Thompson | a28eed8 | 2013-08-22 16:21:10 -0700 | [diff] [blame] | 65 | /**/ |
| 66 | |
Jeff Thompson | 3d613fd | 2013-10-15 15:39:04 -0700 | [diff] [blame] | 67 | # if !defined(NDNBOOST_MPL_CFG_NO_APPLY_TEMPLATE) |
Jeff Thompson | a28eed8 | 2013-08-22 16:21:10 -0700 | [diff] [blame] | 68 | |
Jeff Thompson | 3d613fd | 2013-10-15 15:39:04 -0700 | [diff] [blame] | 69 | #if !defined(NDNBOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION) |
Jeff Thompson | a28eed8 | 2013-08-22 16:21:10 -0700 | [diff] [blame] | 70 | // forward declaration |
| 71 | template< |
| 72 | typename F, AUX778076_APPLY_DEF_PARAMS(typename T, na) |
| 73 | > |
| 74 | struct apply; |
| 75 | #else |
| 76 | namespace aux { |
Jeff Thompson | 3d613fd | 2013-10-15 15:39:04 -0700 | [diff] [blame] | 77 | template< NDNBOOST_AUX_NTTP_DECL(int, arity_) > struct apply_chooser; |
Jeff Thompson | a28eed8 | 2013-08-22 16:21:10 -0700 | [diff] [blame] | 78 | } |
| 79 | #endif |
| 80 | |
Jeff Thompson | 3d613fd | 2013-10-15 15:39:04 -0700 | [diff] [blame] | 81 | # endif // NDNBOOST_MPL_CFG_NO_APPLY_TEMPLATE |
Jeff Thompson | a28eed8 | 2013-08-22 16:21:10 -0700 | [diff] [blame] | 82 | |
Jeff Thompson | 3d613fd | 2013-10-15 15:39:04 -0700 | [diff] [blame] | 83 | #define NDNBOOST_PP_ITERATION_PARAMS_1 \ |
| 84 | (3,(0, NDNBOOST_MPL_LIMIT_METAFUNCTION_ARITY, <ndnboost/mpl/apply_fwd.hpp>)) |
| 85 | #include NDNBOOST_PP_ITERATE() |
Jeff Thompson | a28eed8 | 2013-08-22 16:21:10 -0700 | [diff] [blame] | 86 | |
| 87 | |
| 88 | # undef AUX778076_APPLY_N_COMMA_PARAMS |
| 89 | # undef AUX778076_APPLY_DEF_PARAMS |
| 90 | |
| 91 | }} |
| 92 | |
Jeff Thompson | 3d613fd | 2013-10-15 15:39:04 -0700 | [diff] [blame] | 93 | #endif // NDNBOOST_MPL_CFG_NO_PREPROCESSED_HEADERS |
| 94 | #endif // NDNBOOST_MPL_APPLY_FWD_HPP_INCLUDED |
Jeff Thompson | a28eed8 | 2013-08-22 16:21:10 -0700 | [diff] [blame] | 95 | |
| 96 | ///// iteration |
| 97 | |
| 98 | #else |
Jeff Thompson | 3d613fd | 2013-10-15 15:39:04 -0700 | [diff] [blame] | 99 | #define i_ NDNBOOST_PP_FRAME_ITERATION(1) |
Jeff Thompson | a28eed8 | 2013-08-22 16:21:10 -0700 | [diff] [blame] | 100 | |
| 101 | template< |
| 102 | typename F AUX778076_APPLY_N_COMMA_PARAMS(i_, typename T) |
| 103 | > |
Jeff Thompson | 3d613fd | 2013-10-15 15:39:04 -0700 | [diff] [blame] | 104 | struct NDNBOOST_PP_CAT(apply,i_); |
Jeff Thompson | a28eed8 | 2013-08-22 16:21:10 -0700 | [diff] [blame] | 105 | |
| 106 | #undef i_ |
Jeff Thompson | 3d613fd | 2013-10-15 15:39:04 -0700 | [diff] [blame] | 107 | #endif // NDNBOOST_PP_IS_ITERATING |