blob: a97f3131fb1fb8bda5312a4a51f30808c4f34094 [file] [log] [blame]
Jeff Thompsona28eed82013-08-22 16:21:10 -07001
2// Copyright Aleksey Gurtovoy 2001-2004
3//
4// Distributed under the Boost Software License, Version 1.0.
5// (See accompanying file LICENSE_1_0.txt or copy at
6// http://www.boost.org/LICENSE_1_0.txt)
7//
8
9// Preprocessed version of "ndnboost/mpl/inherit.hpp" header
10// -- DO NOT modify by hand!
11
12namespace ndnboost { namespace mpl {
13
14template<
Jeff Thompson3d613fd2013-10-15 15:39:04 -070015 typename NDNBOOST_MPL_AUX_NA_PARAM(T1)
16 , typename NDNBOOST_MPL_AUX_NA_PARAM(T2)
Jeff Thompsona28eed82013-08-22 16:21:10 -070017 >
18struct inherit2
19 : T1, T2
20{
21 typedef inherit2 type;
Jeff Thompson3d613fd2013-10-15 15:39:04 -070022 NDNBOOST_MPL_AUX_LAMBDA_SUPPORT(2, inherit2, (T1, T2))
Jeff Thompsona28eed82013-08-22 16:21:10 -070023};
24
25template< typename T1 >
26struct inherit2< T1,empty_base >
27{
28 typedef T1 type;
Jeff Thompson3d613fd2013-10-15 15:39:04 -070029 NDNBOOST_MPL_AUX_LAMBDA_SUPPORT_SPEC(2, inherit2, (T1, empty_base))
Jeff Thompsona28eed82013-08-22 16:21:10 -070030};
31
32template< typename T2 >
33struct inherit2< empty_base,T2 >
34{
35 typedef T2 type;
Jeff Thompson3d613fd2013-10-15 15:39:04 -070036 NDNBOOST_MPL_AUX_LAMBDA_SUPPORT_SPEC(2, inherit2, (empty_base, T2))
Jeff Thompsona28eed82013-08-22 16:21:10 -070037};
38
39template<>
40struct inherit2< empty_base,empty_base >
41{
42 typedef empty_base type;
Jeff Thompson3d613fd2013-10-15 15:39:04 -070043 NDNBOOST_MPL_AUX_LAMBDA_SUPPORT_SPEC(2, inherit2, (empty_base, empty_base))
Jeff Thompsona28eed82013-08-22 16:21:10 -070044};
45
Jeff Thompson3d613fd2013-10-15 15:39:04 -070046NDNBOOST_MPL_AUX_NA_SPEC(2, inherit2)
Jeff Thompsona28eed82013-08-22 16:21:10 -070047
48template<
49 typename T1 = na, typename T2 = na, typename T3 = na
50 >
51struct inherit3
52 : inherit2<
53 typename inherit2<
54 T1, T2
55 >::type
56 , T3
57 >
58{
Jeff Thompson3d613fd2013-10-15 15:39:04 -070059 NDNBOOST_MPL_AUX_LAMBDA_SUPPORT(
Jeff Thompsona28eed82013-08-22 16:21:10 -070060 3
61 , inherit3
62 , ( T1, T2, T3)
63 )
64};
65
Jeff Thompson3d613fd2013-10-15 15:39:04 -070066NDNBOOST_MPL_AUX_NA_SPEC(3, inherit3)
Jeff Thompsona28eed82013-08-22 16:21:10 -070067
68template<
69 typename T1 = na, typename T2 = na, typename T3 = na, typename T4 = na
70 >
71struct inherit4
72 : inherit2<
73 typename inherit3<
74 T1, T2, T3
75 >::type
76 , T4
77 >
78{
Jeff Thompson3d613fd2013-10-15 15:39:04 -070079 NDNBOOST_MPL_AUX_LAMBDA_SUPPORT(
Jeff Thompsona28eed82013-08-22 16:21:10 -070080 4
81 , inherit4
82 , ( T1, T2, T3, T4)
83 )
84};
85
Jeff Thompson3d613fd2013-10-15 15:39:04 -070086NDNBOOST_MPL_AUX_NA_SPEC(4, inherit4)
Jeff Thompsona28eed82013-08-22 16:21:10 -070087
88template<
89 typename T1 = na, typename T2 = na, typename T3 = na, typename T4 = na
90 , typename T5 = na
91 >
92struct inherit5
93 : inherit2<
94 typename inherit4<
95 T1, T2, T3, T4
96 >::type
97 , T5
98 >
99{
Jeff Thompson3d613fd2013-10-15 15:39:04 -0700100 NDNBOOST_MPL_AUX_LAMBDA_SUPPORT(
Jeff Thompsona28eed82013-08-22 16:21:10 -0700101 5
102 , inherit5
103 , ( T1, T2, T3, T4, T5)
104 )
105};
106
Jeff Thompson3d613fd2013-10-15 15:39:04 -0700107NDNBOOST_MPL_AUX_NA_SPEC(5, inherit5)
Jeff Thompsona28eed82013-08-22 16:21:10 -0700108
109/// primary template
110
111template<
112 typename T1 = empty_base, typename T2 = empty_base
113 , typename T3 = empty_base, typename T4 = empty_base
114 , typename T5 = empty_base
115 >
116struct inherit
117 : inherit5< T1,T2,T3,T4,T5 >
118{
119};
120
121template<>
122struct inherit< na,na,na,na,na >
123{
124 template<
125
126 typename T1 = empty_base, typename T2 = empty_base
127 , typename T3 = empty_base, typename T4 = empty_base
128 , typename T5 = empty_base
129
130 >
131 struct apply
132 : inherit< T1,T2,T3,T4,T5 >
133 {
134 };
135};
136
Jeff Thompson3d613fd2013-10-15 15:39:04 -0700137NDNBOOST_MPL_AUX_NA_SPEC_LAMBDA(5, inherit)
138NDNBOOST_MPL_AUX_NA_SPEC_ARITY(5, inherit)
139NDNBOOST_MPL_AUX_NA_SPEC_TEMPLATE_ARITY(5, 5, inherit)
Jeff Thompsona28eed82013-08-22 16:21:10 -0700140}}
141