blob: f10ee119c5e5f24f531b729975046b52fa7bedc7 [file] [log] [blame]
Jeff Thompsona28eed82013-08-22 16:21:10 -07001
Jeff Thompson3d613fd2013-10-15 15:39:04 -07002#ifndef NDNBOOST_MPL_AUX_ARITY_SPEC_HPP_INCLUDED
3#define NDNBOOST_MPL_AUX_ARITY_SPEC_HPP_INCLUDED
Jeff Thompsona28eed82013-08-22 16:21:10 -07004
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 Thompson3d613fd2013-10-15 15:39:04 -070027#if defined(NDNBOOST_MPL_CFG_BROKEN_DEFAULT_PARAMETERS_IN_NESTED_TEMPLATES)
28# define NDNBOOST_MPL_AUX_NONTYPE_ARITY_SPEC(i,type,name) \
Jeff Thompsona28eed82013-08-22 16:21:10 -070029namespace aux { \
Jeff Thompson3d613fd2013-10-15 15:39:04 -070030template< NDNBOOST_MPL_AUX_NTTP_DECL(int, N), NDNBOOST_MPL_PP_PARAMS(i,type T) > \
Jeff Thompsona28eed82013-08-22 16:21:10 -070031struct arity< \
Jeff Thompson3d613fd2013-10-15 15:39:04 -070032 name< NDNBOOST_MPL_PP_PARAMS(i,T) > \
Jeff Thompsona28eed82013-08-22 16:21:10 -070033 , N \
34 > \
35{ \
Jeff Thompson3d613fd2013-10-15 15:39:04 -070036 NDNBOOST_STATIC_CONSTANT(int \
37 , value = NDNBOOST_MPL_LIMIT_METAFUNCTION_ARITY \
Jeff Thompsona28eed82013-08-22 16:21:10 -070038 ); \
39}; \
40} \
41/**/
42#else
Jeff Thompson3d613fd2013-10-15 15:39:04 -070043# define NDNBOOST_MPL_AUX_NONTYPE_ARITY_SPEC(i,type,name) /**/
Jeff Thompsona28eed82013-08-22 16:21:10 -070044#endif
45
Jeff Thompson3d613fd2013-10-15 15:39:04 -070046# define NDNBOOST_MPL_AUX_ARITY_SPEC(i,name) \
47 NDNBOOST_MPL_AUX_NONTYPE_ARITY_SPEC(i,typename,name) \
Jeff Thompsona28eed82013-08-22 16:21:10 -070048/**/
49
50
Jeff Thompson3d613fd2013-10-15 15:39:04 -070051#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 Thompsona28eed82013-08-22 16:21:10 -070054namespace aux { \
Jeff Thompson3d613fd2013-10-15 15:39:04 -070055template< NDNBOOST_MPL_PP_PARAMS(i,typename T) > \
56struct template_arity< name<NDNBOOST_MPL_PP_PARAMS(i,T)> > \
Jeff Thompsona28eed82013-08-22 16:21:10 -070057 : int_<i> \
58{ \
59}; \
60} \
61/**/
62#else
Jeff Thompson3d613fd2013-10-15 15:39:04 -070063# define NDNBOOST_MPL_AUX_TEMPLATE_ARITY_SPEC(i, name) /**/
Jeff Thompsona28eed82013-08-22 16:21:10 -070064#endif
65
66
Jeff Thompson3d613fd2013-10-15 15:39:04 -070067#endif // NDNBOOST_MPL_AUX_ARITY_SPEC_HPP_INCLUDED