aux_/preprocessed/msvc60/apply_wrap.hpp
Go to the documentation of this file.
1 
2 // Copyright Aleksey Gurtovoy 2000-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 "boost/mpl/apply_wrap.hpp" header
10 // -- DO NOT modify by hand!
11 
12 namespace boost { namespace mpl {
13 
14 template< typename F>
16 {
17  template< bool > struct f_ : F {};
18  template<> struct f_<true>
19  {
20  template< typename P = int > struct apply
21  {
22  typedef int type;
23  };
24  };
25 
26  template< typename T = int > struct result_
27  : f_< aux::msvc_never_true<F>::value >
28  ::template apply<>
29  {
30  };
31 
32 };
33 
34 template<
35  typename F
36  >
37 struct apply_wrap0
38 {
39  typedef typename msvc_apply0<F>::template result_<
40 
42 };
43 
45 template<>
46 struct apply_wrap0<int>
47 {
48  typedef int type;
49 };
50 
51 template< typename F>
53 {
54  template< bool > struct f_ : F {};
55  template<> struct f_<true>
56  {
57  template< typename P1 > struct apply
58  {
59  typedef int type;
60  };
61  };
62 
63  template< typename T1 > struct result_
64  : f_< aux::msvc_never_true<F>::value >
65  ::template apply<T1>
66  {
67  };
68 };
69 
70 template<
71  typename F, typename T1
72  >
73 struct apply_wrap1
74 {
75  typedef typename msvc_apply1<F>::template result_<
76  T1
78 };
79 
81 template<>
82 struct apply_wrap1< int,int >
83 {
84  typedef int type;
85 };
86 
87 template< typename F>
89 {
90  template< bool > struct f_ : F {};
91  template<> struct f_<true>
92  {
93  template< typename P1, typename P2 > struct apply
94  {
95  typedef int type;
96  };
97  };
98 
99  template< typename T1, typename T2 > struct result_
100  : f_< aux::msvc_never_true<F>::value >
101  ::template apply< T1,T2 >
102  {
103  };
104 };
105 
106 template<
107  typename F, typename T1, typename T2
108  >
109 struct apply_wrap2
110 {
111  typedef typename msvc_apply2<F>::template result_<
112  T1, T2
114 };
115 
117 template<>
118 struct apply_wrap2< int,int,int >
119 {
120  typedef int type;
121 };
122 
123 template< typename F>
125 {
126  template< bool > struct f_ : F {};
127  template<> struct f_<true>
128  {
129  template< typename P1, typename P2, typename P3 > struct apply
130  {
131  typedef int type;
132  };
133  };
134 
135  template< typename T1, typename T2, typename T3 > struct result_
136  : f_< aux::msvc_never_true<F>::value >
137  ::template apply< T1,T2,T3 >
138  {
139  };
140 };
141 
142 template<
143  typename F, typename T1, typename T2, typename T3
144  >
145 struct apply_wrap3
146 {
147  typedef typename msvc_apply3<F>::template result_<
148  T1, T2, T3
150 };
151 
153 template<>
154 struct apply_wrap3< int,int,int,int >
155 {
156  typedef int type;
157 };
158 
159 template< typename F>
161 {
162  template< bool > struct f_ : F {};
163  template<> struct f_<true>
164  {
165  template<
166  typename P1, typename P2, typename P3, typename P4
167  >
168  struct apply
169  {
170  typedef int type;
171  };
172  };
173 
174  template<
175  typename T1, typename T2, typename T3, typename T4
176  >
177  struct result_
178  : f_< aux::msvc_never_true<F>::value >
179  ::template apply< T1,T2,T3,T4 >
180  {
181  };
182 };
183 
184 template<
185  typename F, typename T1, typename T2, typename T3, typename T4
186  >
187 struct apply_wrap4
188 {
189  typedef typename msvc_apply4<F>::template result_<
190  T1, T2, T3, T4
192 };
193 
195 template<>
196 struct apply_wrap4< int,int,int,int,int >
197 {
198  typedef int type;
199 };
200 
201 template< typename F>
203 {
204  template< bool > struct f_ : F {};
205  template<> struct f_<true>
206  {
207  template<
208  typename P1, typename P2, typename P3, typename P4
209  , typename P5
210  >
211  struct apply
212  {
213  typedef int type;
214  };
215  };
216 
217  template<
218  typename T1, typename T2, typename T3, typename T4
219  , typename T5
220  >
221  struct result_
222  : f_< aux::msvc_never_true<F>::value >
223  ::template apply< T1,T2,T3,T4,T5 >
224  {
225  };
226 };
227 
228 template<
229  typename F, typename T1, typename T2, typename T3, typename T4
230  , typename T5
231  >
232 struct apply_wrap5
233 {
234  typedef typename msvc_apply5<F>::template result_<
235  T1, T2, T3, T4, T5
237 };
238 
240 template<>
241 struct apply_wrap5< int,int,int,int,int,int >
242 {
243  typedef int type;
244 };
245 
246 }}
247 
boost::mpl::msvc_apply1::f_
Definition: aux_/preprocessed/msvc60/apply_wrap.hpp:54
boost::mpl::apply_wrap1< lambda< F >::type, deref< Iterator >::type >::type
msvc_apply1< lambda< F >::type >::template result_< deref< Iterator >::type >::type type
Definition: aux_/preprocessed/msvc60/apply_wrap.hpp:77
boost::mpl::msvc_apply5::f_
Definition: aux_/preprocessed/msvc60/apply_wrap.hpp:204
boost::mpl::msvc_apply0::result_
Definition: aux_/preprocessed/msvc60/apply_wrap.hpp:26
boost::mpl::msvc_apply0::f_
Definition: aux_/preprocessed/msvc60/apply_wrap.hpp:17
boost
BOOST_MOVE_USE_STANDARD_LIBRARY_MOVE.
boost::mpl::msvc_apply0
Definition: aux_/preprocessed/msvc60/apply_wrap.hpp:15
boost::mpl::apply_wrap0
Definition: aux_/preprocessed/bcc/apply_wrap.hpp:123
boost::mpl::msvc_apply3::result_
Definition: aux_/preprocessed/msvc60/apply_wrap.hpp:135
boost::mpl::msvc_apply3::f_
Definition: aux_/preprocessed/msvc60/apply_wrap.hpp:126
boost::mpl::apply_wrap3< lambda< F >::type, T1, T2, T3 >::type
msvc_apply3< lambda< F >::type >::template result_< T1, T2, T3 >::type type
Definition: aux_/preprocessed/msvc60/apply_wrap.hpp:149
boost::mpl::apply_wrap2< lambda< F >::type, at_c< Args, 0 >::type, at_c< Args, 1 >::type >::type
msvc_apply2< lambda< F >::type >::template result_< at_c< Args, 0 >::type, at_c< Args, 1 >::type >::type type
Definition: aux_/preprocessed/msvc60/apply_wrap.hpp:113
boost::mpl::apply_wrap5< lambda< F >::type, at_c< Args, 0 >::type, at_c< Args, 1 >::type, at_c< Args, 2 >::type, at_c< Args, 3 >::type, at_c< Args, 4 >::type >::type
msvc_apply5< lambda< F >::type >::template result_< at_c< Args, 0 >::type, at_c< Args, 1 >::type, at_c< Args, 2 >::type, at_c< Args, 3 >::type, at_c< Args, 4 >::type >::type type
Definition: aux_/preprocessed/msvc60/apply_wrap.hpp:236
boost::mpl::msvc_apply5
Definition: aux_/preprocessed/msvc60/apply_wrap.hpp:202
boost::mpl::msvc_apply5::f_< true >::apply::type
int type
Definition: aux_/preprocessed/msvc60/apply_wrap.hpp:213
boost::mpl::msvc_apply4::f_
Definition: aux_/preprocessed/msvc60/apply_wrap.hpp:162
boost::mpl::apply_wrap3
Definition: aux_/preprocessed/bcc/apply_wrap.hpp:367
boost::mpl::apply_wrap2< int, int, int >::type
int type
Definition: aux_/preprocessed/msvc60/apply_wrap.hpp:120
boost::mpl::apply_wrap1
Definition: aux_/preprocessed/bcc/apply_wrap.hpp:218
boost::mpl::msvc_apply2::f_
Definition: aux_/preprocessed/msvc60/apply_wrap.hpp:90
boost::mpl::msvc_apply4::result_
Definition: aux_/preprocessed/msvc60/apply_wrap.hpp:177
boost::mpl::apply_wrap4< lambda< F >::type, at_c< Args, 0 >::type, at_c< Args, 1 >::type, at_c< Args, 2 >::type, at_c< Args, 3 >::type >::type
msvc_apply4< lambda< F >::type >::template result_< at_c< Args, 0 >::type, at_c< Args, 1 >::type, at_c< Args, 2 >::type, at_c< Args, 3 >::type >::type type
Definition: aux_/preprocessed/msvc60/apply_wrap.hpp:191
boost::mpl::msvc_apply2::result_
Definition: aux_/preprocessed/msvc60/apply_wrap.hpp:99
boost::mpl::apply
primary template (not a specialization!)
Definition: aux_/preprocessed/bcc/apply.hpp:163
boost::mpl::msvc_apply1::f_< true >::apply::type
int type
Definition: aux_/preprocessed/msvc60/apply_wrap.hpp:59
boost::mpl::msvc_apply4
Definition: aux_/preprocessed/msvc60/apply_wrap.hpp:160
boost::mpl::apply_wrap4
Definition: aux_/preprocessed/bcc/apply_wrap.hpp:416
boost::mpl::msvc_apply3::f_< true >::apply::type
int type
Definition: aux_/preprocessed/msvc60/apply_wrap.hpp:131
boost::mpl::msvc_apply2
Definition: aux_/preprocessed/msvc60/apply_wrap.hpp:88
boost::mpl::apply_wrap4< int, int, int, int, int >::type
int type
Definition: aux_/preprocessed/msvc60/apply_wrap.hpp:198
boost::mpl::apply_wrap2
Definition: aux_/preprocessed/bcc/apply_wrap.hpp:301
boost::mpl::msvc_apply5::result_
Definition: aux_/preprocessed/msvc60/apply_wrap.hpp:221
boost::mpl::apply_wrap3< int, int, int, int >::type
int type
Definition: aux_/preprocessed/msvc60/apply_wrap.hpp:156
boost::mpl::apply_wrap0< int >::type
int type
Definition: aux_/preprocessed/msvc60/apply_wrap.hpp:48
boost::mpl::apply_wrap5< int, int, int, int, int, int >::type
int type
Definition: aux_/preprocessed/msvc60/apply_wrap.hpp:243
boost::mpl::msvc_apply1::result_
Definition: aux_/preprocessed/msvc60/apply_wrap.hpp:63
boost::mpl::msvc_apply3
Definition: aux_/preprocessed/msvc60/apply_wrap.hpp:124
boost::mpl::apply_wrap5
Definition: aux_/preprocessed/bcc/apply_wrap.hpp:451
boost::mpl::msvc_apply0::f_< true >::apply::type
int type
Definition: aux_/preprocessed/msvc60/apply_wrap.hpp:22
boost::mpl::msvc_apply2::f_< true >::apply::type
int type
Definition: aux_/preprocessed/msvc60/apply_wrap.hpp:95
boost::mpl::msvc_apply1
Definition: aux_/preprocessed/msvc60/apply_wrap.hpp:52
boost::mpl::msvc_apply4::f_< true >::apply::type
int type
Definition: aux_/preprocessed/msvc60/apply_wrap.hpp:170
boost::mpl::apply_wrap0< lambda< F >::type >::type
msvc_apply0< lambda< F >::type >::template result_< >::type type
Definition: aux_/preprocessed/msvc60/apply_wrap.hpp:41
boost::mpl::apply_wrap1< int, int >::type
int type
Definition: aux_/preprocessed/msvc60/apply_wrap.hpp:84


sick_visionary_ros
Author(s): SICK AG TechSupport 3D Snapshot
autogenerated on Thu Feb 8 2024 03:36:32