blob: a9fd904bd50a12dd3f0d0e598475293599a7160b [file] [log] [blame]
Jeff Thompsona28eed82013-08-22 16:21:10 -07001
2// NO INCLUDE GUARDS, THE HEADER IS INTENDED FOR MULTIPLE INCLUSION
3
Jeff Thompson3d613fd2013-10-15 15:39:04 -07004#if defined(NDNBOOST_PP_IS_ITERATING)
Jeff Thompsona28eed82013-08-22 16:21:10 -07005
6// Copyright Aleksey Gurtovoy 2000-2004
7//
8// Distributed under the Boost Software License, Version 1.0.
9// (See accompanying file LICENSE_1_0.txt or copy at
10// http://www.boost.org/LICENSE_1_0.txt)
11//
12// See http://www.boost.org/libs/mpl for documentation.
13
14// $Id: numbered_c.hpp 49267 2008-10-11 06:19:02Z agurtovoy $
15// $Date: 2008-10-10 23:19:02 -0700 (Fri, 10 Oct 2008) $
16// $Revision: 49267 $
17
18#include <ndnboost/preprocessor/enum_params.hpp>
19#include <ndnboost/preprocessor/enum_shifted_params.hpp>
20#include <ndnboost/preprocessor/comma_if.hpp>
21#include <ndnboost/preprocessor/repeat.hpp>
22#include <ndnboost/preprocessor/dec.hpp>
23#include <ndnboost/preprocessor/cat.hpp>
24
Jeff Thompson3d613fd2013-10-15 15:39:04 -070025#define i_ NDNBOOST_PP_FRAME_ITERATION(1)
Jeff Thompsona28eed82013-08-22 16:21:10 -070026
Jeff Thompson3d613fd2013-10-15 15:39:04 -070027#if defined(NDNBOOST_MPL_CFG_TYPEOF_BASED_SEQUENCES)
Jeff Thompsona28eed82013-08-22 16:21:10 -070028
29# define AUX778076_VECTOR_TAIL(vector, i_, C) \
Jeff Thompson3d613fd2013-10-15 15:39:04 -070030 NDNBOOST_PP_CAT(NDNBOOST_PP_CAT(vector,i_),_c)<T \
31 NDNBOOST_PP_COMMA_IF(i_) NDNBOOST_PP_ENUM_PARAMS(i_, C) \
Jeff Thompsona28eed82013-08-22 16:21:10 -070032 > \
33 /**/
34
35#if i_ > 0
36template<
37 typename T
Jeff Thompson3d613fd2013-10-15 15:39:04 -070038 , NDNBOOST_PP_ENUM_PARAMS(i_, T C)
Jeff Thompsona28eed82013-08-22 16:21:10 -070039 >
Jeff Thompson3d613fd2013-10-15 15:39:04 -070040struct NDNBOOST_PP_CAT(NDNBOOST_PP_CAT(vector,i_),_c)
Jeff Thompsona28eed82013-08-22 16:21:10 -070041 : v_item<
Jeff Thompson3d613fd2013-10-15 15:39:04 -070042 integral_c<T,NDNBOOST_PP_CAT(C,NDNBOOST_PP_DEC(i_))>
43 , AUX778076_VECTOR_TAIL(vector,NDNBOOST_PP_DEC(i_),C)
Jeff Thompsona28eed82013-08-22 16:21:10 -070044 >
45{
Jeff Thompson3d613fd2013-10-15 15:39:04 -070046 typedef NDNBOOST_PP_CAT(NDNBOOST_PP_CAT(vector,i_),_c) type;
Jeff Thompsona28eed82013-08-22 16:21:10 -070047 typedef T value_type;
48};
49#endif
50
51# undef AUX778076_VECTOR_TAIL
52
53#else // "brute force" implementation
54
55# define AUX778076_VECTOR_C_PARAM_FUNC(unused, i_, param) \
Jeff Thompson3d613fd2013-10-15 15:39:04 -070056 NDNBOOST_PP_COMMA_IF(i_) \
57 integral_c<T,NDNBOOST_PP_CAT(param,i_)> \
Jeff Thompsona28eed82013-08-22 16:21:10 -070058 /**/
59
60template<
61 typename T
Jeff Thompson3d613fd2013-10-15 15:39:04 -070062 , NDNBOOST_PP_ENUM_PARAMS(i_, T C)
Jeff Thompsona28eed82013-08-22 16:21:10 -070063 >
Jeff Thompson3d613fd2013-10-15 15:39:04 -070064struct NDNBOOST_PP_CAT(NDNBOOST_PP_CAT(vector,i_),_c)
65 : NDNBOOST_PP_CAT(vector,i_)< NDNBOOST_PP_REPEAT(i_,AUX778076_VECTOR_C_PARAM_FUNC,C) >
Jeff Thompsona28eed82013-08-22 16:21:10 -070066{
Jeff Thompson3d613fd2013-10-15 15:39:04 -070067 typedef NDNBOOST_PP_CAT(NDNBOOST_PP_CAT(vector,i_),_c) type;
Jeff Thompsona28eed82013-08-22 16:21:10 -070068 typedef T value_type;
69};
70
71# undef AUX778076_VECTOR_C_PARAM_FUNC
72
Jeff Thompson3d613fd2013-10-15 15:39:04 -070073#endif // NDNBOOST_MPL_CFG_TYPEOF_BASED_SEQUENCES
Jeff Thompsona28eed82013-08-22 16:21:10 -070074
75#undef i_
76
Jeff Thompson3d613fd2013-10-15 15:39:04 -070077#endif // NDNBOOST_PP_IS_ITERATING