blob: 9b608c183af4af854ec52296644379dc2c13ba1d [file] [log] [blame]
Jeff Thompsona28eed82013-08-22 16:21:10 -07001
2// Copyright Aleksey Gurtovoy 2000-2004
3// Copyright Jaap Suter 2003
4//
5// Distributed under the Boost Software License, Version 1.0.
6// (See accompanying file LICENSE_1_0.txt or copy at
7// http://www.boost.org/LICENSE_1_0.txt)
8//
9
10// Preprocessed version of "ndnboost/mpl/shift_right.hpp" header
11// -- DO NOT modify by hand!
12
13namespace ndnboost { namespace mpl {
14
15template<
16 typename Tag1
17 , typename Tag2
18 >
19struct shift_right_impl
20 : if_c<
Jeff Thompson3d613fd2013-10-15 15:39:04 -070021 ( NDNBOOST_MPL_AUX_NESTED_VALUE_WKND(int, Tag1)
22 > NDNBOOST_MPL_AUX_NESTED_VALUE_WKND(int, Tag2)
Jeff Thompsona28eed82013-08-22 16:21:10 -070023 )
24
25 , aux::cast2nd_impl< shift_right_impl< Tag1,Tag1 >,Tag1, Tag2 >
26 , aux::cast1st_impl< shift_right_impl< Tag2,Tag2 >,Tag1, Tag2 >
27 >::type
28{
29};
30
31/// for Digital Mars C++/compilers with no CTPS/TTP support
32template<> struct shift_right_impl< na,na >
33{
34 template< typename U1, typename U2 > struct apply
35 {
36 typedef apply type;
Jeff Thompson3d613fd2013-10-15 15:39:04 -070037 NDNBOOST_STATIC_CONSTANT(int, value = 0);
Jeff Thompsona28eed82013-08-22 16:21:10 -070038 };
39};
40
41template< typename Tag > struct shift_right_impl< na,Tag >
42{
43 template< typename U1, typename U2 > struct apply
44 {
45 typedef apply type;
Jeff Thompson3d613fd2013-10-15 15:39:04 -070046 NDNBOOST_STATIC_CONSTANT(int, value = 0);
Jeff Thompsona28eed82013-08-22 16:21:10 -070047 };
48};
49
50template< typename Tag > struct shift_right_impl< Tag,na >
51{
52 template< typename U1, typename U2 > struct apply
53 {
54 typedef apply type;
Jeff Thompson3d613fd2013-10-15 15:39:04 -070055 NDNBOOST_STATIC_CONSTANT(int, value = 0);
Jeff Thompsona28eed82013-08-22 16:21:10 -070056 };
57};
58
59template< typename T > struct shift_right_tag
60{
61 typedef typename T::tag type;
62};
63
64template<
Jeff Thompson3d613fd2013-10-15 15:39:04 -070065 typename NDNBOOST_MPL_AUX_NA_PARAM(N1)
66 , typename NDNBOOST_MPL_AUX_NA_PARAM(N2)
Jeff Thompsona28eed82013-08-22 16:21:10 -070067 >
68struct shift_right
69
70 : shift_right_impl<
71 typename shift_right_tag<N1>::type
72 , typename shift_right_tag<N2>::type
73 >::template apply< N1,N2 >::type
74{
75};
76
Jeff Thompson3d613fd2013-10-15 15:39:04 -070077NDNBOOST_MPL_AUX_NA_SPEC2(2, 2, shift_right)
Jeff Thompsona28eed82013-08-22 16:21:10 -070078
79}}
80
81namespace ndnboost { namespace mpl {
82template<>
83struct shift_right_impl< integral_c_tag,integral_c_tag >
84{
85 template< typename N, typename S > struct apply
86
87 : integral_c<
88 typename N::value_type
Jeff Thompson3d613fd2013-10-15 15:39:04 -070089 , ( NDNBOOST_MPL_AUX_VALUE_WKND(N)::value
90 >> NDNBOOST_MPL_AUX_VALUE_WKND(S)::value
Jeff Thompsona28eed82013-08-22 16:21:10 -070091 )
92 >
93 {
94 };
95};
96
97}}