blob: 15c642efed8244c5252d8542d156df32cdfd2af3 [file] [log] [blame]
Jeff Thompsonef2d5a42013-08-22 19:09:24 -07001
2// NO INCLUDE GUARDS, THE HEADER IS INTENDED FOR MULTIPLE INCLUSION
3
4// Copyright Peter Dimov 2000-2002
5// Copyright Aleksey Gurtovoy 2000-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: numbered.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
Jeff Thompson3d613fd2013-10-15 15:39:04 -070017#if defined(NDNBOOST_PP_IS_ITERATING)
Jeff Thompsonef2d5a42013-08-22 19:09:24 -070018
19#include <ndnboost/preprocessor/enum_params.hpp>
20#include <ndnboost/preprocessor/enum_shifted_params.hpp>
21#include <ndnboost/preprocessor/dec.hpp>
22#include <ndnboost/preprocessor/cat.hpp>
23
Jeff Thompson3d613fd2013-10-15 15:39:04 -070024#define i NDNBOOST_PP_FRAME_ITERATION(1)
Jeff Thompsonef2d5a42013-08-22 19:09:24 -070025
26#if i == 1
27
28template<
Jeff Thompson3d613fd2013-10-15 15:39:04 -070029 NDNBOOST_PP_ENUM_PARAMS(i, typename T)
Jeff Thompsonef2d5a42013-08-22 19:09:24 -070030 >
31struct list1
32 : l_item<
33 long_<1>
34 , T0
35 , l_end
36 >
37{
38 typedef list1 type;
39};
40
41#else
42
43# define MPL_AUX_LIST_TAIL(list, i, T) \
Jeff Thompson3d613fd2013-10-15 15:39:04 -070044 NDNBOOST_PP_CAT(list,NDNBOOST_PP_DEC(i))< \
45 NDNBOOST_PP_ENUM_SHIFTED_PARAMS(i, T) \
Jeff Thompsonef2d5a42013-08-22 19:09:24 -070046 > \
47 /**/
48
49template<
Jeff Thompson3d613fd2013-10-15 15:39:04 -070050 NDNBOOST_PP_ENUM_PARAMS(i, typename T)
Jeff Thompsonef2d5a42013-08-22 19:09:24 -070051 >
Jeff Thompson3d613fd2013-10-15 15:39:04 -070052struct NDNBOOST_PP_CAT(list,i)
Jeff Thompsonef2d5a42013-08-22 19:09:24 -070053 : l_item<
54 long_<i>
55 , T0
56 , MPL_AUX_LIST_TAIL(list,i,T)
57 >
58{
Jeff Thompson3d613fd2013-10-15 15:39:04 -070059 typedef NDNBOOST_PP_CAT(list,i) type;
Jeff Thompsonef2d5a42013-08-22 19:09:24 -070060};
61
62# undef MPL_AUX_LIST_TAIL
63
64#endif // i == 1
65
66#undef i
67
Jeff Thompson3d613fd2013-10-15 15:39:04 -070068#endif // NDNBOOST_PP_IS_ITERATING