]> AND Private Git Repository - canny.git/blob - stc/exp/ml_stc_linux_make_v1.0/include/boost/mpl/if.hpp
Logo AND Algorithmique Numérique Distribuée

Private GIT Repository
5f8c8f63e163c945f13bb3f517606a17e48996bd
[canny.git] / stc / exp / ml_stc_linux_make_v1.0 / include / boost / mpl / if.hpp
1 \r
2 #ifndef BOOST_MPL_IF_HPP_INCLUDED\r
3 #define BOOST_MPL_IF_HPP_INCLUDED\r
4 \r
5 // Copyright Aleksey Gurtovoy 2000-2004\r
6 //\r
7 // Distributed under the Boost Software License, Version 1.0. \r
8 // (See accompanying file LICENSE_1_0.txt or copy at \r
9 // http://www.boost.org/LICENSE_1_0.txt)\r
10 //\r
11 // See http://www.boost.org/libs/mpl for documentation.\r
12 \r
13 // $Id: if.hpp 49267 2008-10-11 06:19:02Z agurtovoy $\r
14 // $Date: 2008-10-11 02:19:02 -0400 (Sat, 11 Oct 2008) $\r
15 // $Revision: 49267 $\r
16 \r
17 #include <boost/mpl/aux_/value_wknd.hpp>\r
18 #include <boost/mpl/aux_/static_cast.hpp>\r
19 #include <boost/mpl/aux_/na_spec.hpp>\r
20 #include <boost/mpl/aux_/lambda_support.hpp>\r
21 #include <boost/mpl/aux_/config/integral.hpp>\r
22 #include <boost/mpl/aux_/config/ctps.hpp>\r
23 #include <boost/mpl/aux_/config/workaround.hpp>\r
24 \r
25 namespace boost { namespace mpl {\r
26 \r
27 #if !defined(BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION)\r
28 \r
29 template<\r
30       bool C\r
31     , typename T1\r
32     , typename T2\r
33     >\r
34 struct if_c\r
35 {\r
36     typedef T1 type;\r
37 };\r
38 \r
39 template<\r
40       typename T1\r
41     , typename T2\r
42     >\r
43 struct if_c<false,T1,T2>\r
44 {\r
45     typedef T2 type;\r
46 };\r
47 \r
48 // agurt, 05/sep/04: nondescriptive parameter names for the sake of DigitalMars\r
49 // (and possibly MWCW < 8.0); see http://article.gmane.org/gmane.comp.lib.boost.devel/108959\r
50 template<\r
51       typename BOOST_MPL_AUX_NA_PARAM(T1)\r
52     , typename BOOST_MPL_AUX_NA_PARAM(T2)\r
53     , typename BOOST_MPL_AUX_NA_PARAM(T3)\r
54     >\r
55 struct if_\r
56 {\r
57  private:\r
58     // agurt, 02/jan/03: two-step 'type' definition for the sake of aCC \r
59     typedef if_c<\r
60 #if defined(BOOST_MPL_CFG_BCC_INTEGRAL_CONSTANTS)\r
61           BOOST_MPL_AUX_VALUE_WKND(T1)::value\r
62 #else\r
63           BOOST_MPL_AUX_STATIC_CAST(bool, BOOST_MPL_AUX_VALUE_WKND(T1)::value)\r
64 #endif\r
65         , T2\r
66         , T3\r
67         > almost_type_;\r
68  \r
69  public:\r
70     typedef typename almost_type_::type type;\r
71     \r
72     BOOST_MPL_AUX_LAMBDA_SUPPORT(3,if_,(T1,T2,T3))\r
73 };\r
74 \r
75 #else\r
76 \r
77 // no partial class template specialization\r
78 \r
79 namespace aux {\r
80 \r
81 template< bool C >\r
82 struct if_impl\r
83 {\r
84     template< typename T1, typename T2 > struct result_\r
85     {\r
86         typedef T1 type;\r
87     };\r
88 };\r
89 \r
90 template<>\r
91 struct if_impl<false>\r
92 {\r
93     template< typename T1, typename T2 > struct result_\r
94     { \r
95         typedef T2 type;\r
96     };\r
97 };\r
98 \r
99 } // namespace aux\r
100 \r
101 template<\r
102       bool C_\r
103     , typename T1\r
104     , typename T2\r
105     >\r
106 struct if_c\r
107 {\r
108     typedef typename aux::if_impl< C_ >\r
109         ::template result_<T1,T2>::type type;\r
110 };\r
111 \r
112 // (almost) copy & paste in order to save one more \r
113 // recursively nested template instantiation to user\r
114 template<\r
115       typename BOOST_MPL_AUX_NA_PARAM(C_)\r
116     , typename BOOST_MPL_AUX_NA_PARAM(T1)\r
117     , typename BOOST_MPL_AUX_NA_PARAM(T2)\r
118     >\r
119 struct if_\r
120 {\r
121     enum { msvc_wknd_ = BOOST_MPL_AUX_MSVC_VALUE_WKND(C_)::value };\r
122 \r
123     typedef typename aux::if_impl< BOOST_MPL_AUX_STATIC_CAST(bool, msvc_wknd_) >\r
124         ::template result_<T1,T2>::type type;\r
125 \r
126     BOOST_MPL_AUX_LAMBDA_SUPPORT(3,if_,(C_,T1,T2))\r
127 };\r
128 \r
129 #endif // BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION\r
130 \r
131 BOOST_MPL_AUX_NA_SPEC(3, if_)\r
132 \r
133 }}\r
134 \r
135 #endif // BOOST_MPL_IF_HPP_INCLUDED\r