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 | #ifndef NDNBOOST_MPL_AUX_ARITY_SPEC_HPP_INCLUDED |
| 3 | #define NDNBOOST_MPL_AUX_ARITY_SPEC_HPP_INCLUDED |
Jeff Thompson | a28eed8 | 2013-08-22 16:21:10 -0700 | [diff] [blame] | 4 | |
| 5 | // Copyright Aleksey Gurtovoy 2001-2004 |
| 6 | // |
| 7 | // Distributed under the Boost Software License, Version 1.0. |
| 8 | // (See accompanying file LICENSE_1_0.txt or copy at |
| 9 | // http://www.boost.org/LICENSE_1_0.txt) |
| 10 | // |
| 11 | // See http://www.boost.org/libs/mpl for documentation. |
| 12 | |
| 13 | // $Id: arity_spec.hpp 49267 2008-10-11 06:19:02Z agurtovoy $ |
| 14 | // $Date: 2008-10-10 23:19:02 -0700 (Fri, 10 Oct 2008) $ |
| 15 | // $Revision: 49267 $ |
| 16 | |
| 17 | #include <ndnboost/mpl/int.hpp> |
| 18 | #include <ndnboost/mpl/limits/arity.hpp> |
| 19 | #include <ndnboost/mpl/aux_/config/dtp.hpp> |
| 20 | #include <ndnboost/mpl/aux_/preprocessor/params.hpp> |
| 21 | #include <ndnboost/mpl/aux_/arity.hpp> |
| 22 | #include <ndnboost/mpl/aux_/template_arity_fwd.hpp> |
| 23 | #include <ndnboost/mpl/aux_/config/ttp.hpp> |
| 24 | #include <ndnboost/mpl/aux_/config/lambda.hpp> |
| 25 | #include <ndnboost/mpl/aux_/config/static_constant.hpp> |
| 26 | |
Jeff Thompson | 3d613fd | 2013-10-15 15:39:04 -0700 | [diff] [blame] | 27 | #if defined(NDNBOOST_MPL_CFG_BROKEN_DEFAULT_PARAMETERS_IN_NESTED_TEMPLATES) |
| 28 | # define NDNBOOST_MPL_AUX_NONTYPE_ARITY_SPEC(i,type,name) \ |
Jeff Thompson | a28eed8 | 2013-08-22 16:21:10 -0700 | [diff] [blame] | 29 | namespace aux { \ |
Jeff Thompson | 3d613fd | 2013-10-15 15:39:04 -0700 | [diff] [blame] | 30 | template< NDNBOOST_MPL_AUX_NTTP_DECL(int, N), NDNBOOST_MPL_PP_PARAMS(i,type T) > \ |
Jeff Thompson | a28eed8 | 2013-08-22 16:21:10 -0700 | [diff] [blame] | 31 | struct arity< \ |
Jeff Thompson | 3d613fd | 2013-10-15 15:39:04 -0700 | [diff] [blame] | 32 | name< NDNBOOST_MPL_PP_PARAMS(i,T) > \ |
Jeff Thompson | a28eed8 | 2013-08-22 16:21:10 -0700 | [diff] [blame] | 33 | , N \ |
| 34 | > \ |
| 35 | { \ |
Jeff Thompson | 3d613fd | 2013-10-15 15:39:04 -0700 | [diff] [blame] | 36 | NDNBOOST_STATIC_CONSTANT(int \ |
| 37 | , value = NDNBOOST_MPL_LIMIT_METAFUNCTION_ARITY \ |
Jeff Thompson | a28eed8 | 2013-08-22 16:21:10 -0700 | [diff] [blame] | 38 | ); \ |
| 39 | }; \ |
| 40 | } \ |
| 41 | /**/ |
| 42 | #else |
Jeff Thompson | 3d613fd | 2013-10-15 15:39:04 -0700 | [diff] [blame] | 43 | # define NDNBOOST_MPL_AUX_NONTYPE_ARITY_SPEC(i,type,name) /**/ |
Jeff Thompson | a28eed8 | 2013-08-22 16:21:10 -0700 | [diff] [blame] | 44 | #endif |
| 45 | |
Jeff Thompson | 3d613fd | 2013-10-15 15:39:04 -0700 | [diff] [blame] | 46 | # define NDNBOOST_MPL_AUX_ARITY_SPEC(i,name) \ |
| 47 | NDNBOOST_MPL_AUX_NONTYPE_ARITY_SPEC(i,typename,name) \ |
Jeff Thompson | a28eed8 | 2013-08-22 16:21:10 -0700 | [diff] [blame] | 48 | /**/ |
| 49 | |
| 50 | |
Jeff Thompson | 3d613fd | 2013-10-15 15:39:04 -0700 | [diff] [blame] | 51 | #if defined(NDNBOOST_MPL_CFG_EXTENDED_TEMPLATE_PARAMETERS_MATCHING) \ |
| 52 | && !defined(NDNBOOST_MPL_CFG_NO_FULL_LAMBDA_SUPPORT) |
| 53 | # define NDNBOOST_MPL_AUX_TEMPLATE_ARITY_SPEC(i, name) \ |
Jeff Thompson | a28eed8 | 2013-08-22 16:21:10 -0700 | [diff] [blame] | 54 | namespace aux { \ |
Jeff Thompson | 3d613fd | 2013-10-15 15:39:04 -0700 | [diff] [blame] | 55 | template< NDNBOOST_MPL_PP_PARAMS(i,typename T) > \ |
| 56 | struct template_arity< name<NDNBOOST_MPL_PP_PARAMS(i,T)> > \ |
Jeff Thompson | a28eed8 | 2013-08-22 16:21:10 -0700 | [diff] [blame] | 57 | : int_<i> \ |
| 58 | { \ |
| 59 | }; \ |
| 60 | } \ |
| 61 | /**/ |
| 62 | #else |
Jeff Thompson | 3d613fd | 2013-10-15 15:39:04 -0700 | [diff] [blame] | 63 | # define NDNBOOST_MPL_AUX_TEMPLATE_ARITY_SPEC(i, name) /**/ |
Jeff Thompson | a28eed8 | 2013-08-22 16:21:10 -0700 | [diff] [blame] | 64 | #endif |
| 65 | |
| 66 | |
Jeff Thompson | 3d613fd | 2013-10-15 15:39:04 -0700 | [diff] [blame] | 67 | #endif // NDNBOOST_MPL_AUX_ARITY_SPEC_HPP_INCLUDED |