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

Private GIT Repository
28a4f4de513aab5272368e1e843f5b09c32cd7cf
[canny.git] / stc / exp / ml_stc_linux_make_v1.0 / include / boost / mpl / aux_ / preprocessed / msvc70 / shift_right.hpp
1 \r
2 // Copyright Aleksey Gurtovoy 2000-2004\r
3 // Copyright Jaap Suter 2003\r
4 //\r
5 // Distributed under the Boost Software License, Version 1.0. \r
6 // (See accompanying file LICENSE_1_0.txt or copy at \r
7 // http://www.boost.org/LICENSE_1_0.txt)\r
8 //\r
9 \r
10 // Preprocessed version of "boost/mpl/shift_right.hpp" header\r
11 // -- DO NOT modify by hand!\r
12 \r
13 namespace boost { namespace mpl {\r
14 \r
15 template<\r
16       typename Tag1\r
17     , typename Tag2\r
18 \r
19     , BOOST_MPL_AUX_NTTP_DECL(int, tag1_)  = BOOST_MPL_AUX_MSVC_VALUE_WKND(Tag1)::value\r
20     , BOOST_MPL_AUX_NTTP_DECL(int, tag2_)  = BOOST_MPL_AUX_MSVC_VALUE_WKND(Tag2)::value\r
21     >\r
22 struct shift_right_impl\r
23     : if_c<\r
24           ( tag1_ > tag2_ )\r
25         , aux::cast2nd_impl< shift_right_impl< Tag1,Tag1 >,Tag1, Tag2 >\r
26         , aux::cast1st_impl< shift_right_impl< Tag2,Tag2 >,Tag1, Tag2 >\r
27         >::type\r
28 {\r
29 };\r
30 \r
31 /// for Digital Mars C++/compilers with no CTPS/TTP support\r
32 template<> struct shift_right_impl< na,na >\r
33 {\r
34     template< typename U1, typename U2 > struct apply\r
35     {\r
36         typedef apply type;\r
37         BOOST_STATIC_CONSTANT(int, value  = 0);\r
38     };\r
39 };\r
40 \r
41 template<> struct shift_right_impl< na,integral_c_tag >\r
42 {\r
43     template< typename U1, typename U2 > struct apply\r
44     {\r
45         typedef apply type;\r
46         BOOST_STATIC_CONSTANT(int, value  = 0);\r
47     };\r
48 };\r
49 \r
50 template<> struct shift_right_impl< integral_c_tag,na >\r
51 {\r
52     template< typename U1, typename U2 > struct apply\r
53     {\r
54         typedef apply type;\r
55         BOOST_STATIC_CONSTANT(int, value  = 0);\r
56     };\r
57 };\r
58 \r
59 template< typename T > struct shift_right_tag\r
60     : tag< T,na >\r
61 {\r
62 };\r
63 \r
64 template<\r
65       typename BOOST_MPL_AUX_NA_PARAM(N1)\r
66     , typename BOOST_MPL_AUX_NA_PARAM(N2)\r
67     >\r
68 struct shift_right\r
69     : aux::msvc_eti_base< typename apply_wrap2<\r
70           shift_right_impl<\r
71               typename shift_right_tag<N1>::type\r
72             , typename shift_right_tag<N2>::type\r
73             >\r
74         , N1\r
75         , N2\r
76         >::type >::type\r
77 \r
78 {\r
79     BOOST_MPL_AUX_LAMBDA_SUPPORT(2, shift_right, (N1, N2))\r
80 \r
81 };\r
82 \r
83 BOOST_MPL_AUX_NA_SPEC2(2, 2, shift_right)\r
84 \r
85 }}\r
86 \r
87 namespace boost { namespace mpl {\r
88 \r
89 namespace aux {\r
90 template< typename T, typename Shift, T n, Shift s >\r
91 struct shift_right_wknd\r
92 {\r
93     BOOST_STATIC_CONSTANT(T, value  = (n >> s));\r
94     typedef integral_c< T,value > type;\r
95 };\r
96 \r
97 }\r
98 \r
99 template<>\r
100 struct shift_right_impl< integral_c_tag,integral_c_tag >\r
101 {\r
102     template< typename N, typename S > struct apply\r
103         : aux::shift_right_wknd<\r
104               typename N::value_type\r
105             , typename S::value_type\r
106             , N::value\r
107             , S::value\r
108             >::type\r
109 \r
110     {\r
111     };\r
112 };\r
113 \r
114 }}\r