2 // Copyright Aleksey Gurtovoy 2000-2004
\r
4 // Distributed under the Boost Software License, Version 1.0.
\r
5 // (See accompanying file LICENSE_1_0.txt or copy at
\r
6 // http://www.boost.org/LICENSE_1_0.txt)
\r
9 // Preprocessed version of "boost/mpl/not_equal_to.hpp" header
\r
10 // -- DO NOT modify by hand!
\r
12 namespace boost { namespace mpl {
\r
18 struct not_equal_to_impl
\r
20 ( BOOST_MPL_AUX_NESTED_VALUE_WKND(int, Tag1)
\r
21 > BOOST_MPL_AUX_NESTED_VALUE_WKND(int, Tag2)
\r
24 , aux::cast2nd_impl< not_equal_to_impl< Tag1,Tag1 >,Tag1, Tag2 >
\r
25 , aux::cast1st_impl< not_equal_to_impl< Tag2,Tag2 >,Tag1, Tag2 >
\r
30 /// for Digital Mars C++/compilers with no CTPS/TTP support
\r
31 template<> struct not_equal_to_impl< na,na >
\r
33 template< typename U1, typename U2 > struct apply
\r
36 BOOST_STATIC_CONSTANT(int, value = 0);
\r
40 template< typename Tag > struct not_equal_to_impl< na,Tag >
\r
42 template< typename U1, typename U2 > struct apply
\r
45 BOOST_STATIC_CONSTANT(int, value = 0);
\r
49 template< typename Tag > struct not_equal_to_impl< Tag,na >
\r
51 template< typename U1, typename U2 > struct apply
\r
54 BOOST_STATIC_CONSTANT(int, value = 0);
\r
58 template< typename T > struct not_equal_to_tag
\r
60 typedef typename T::tag type;
\r
64 typename BOOST_MPL_AUX_NA_PARAM(N1)
\r
65 , typename BOOST_MPL_AUX_NA_PARAM(N2)
\r
69 : not_equal_to_impl<
\r
70 typename not_equal_to_tag<N1>::type
\r
71 , typename not_equal_to_tag<N2>::type
\r
72 >::template apply< N1,N2 >::type
\r
76 BOOST_MPL_AUX_NA_SPEC2(2, 2, not_equal_to)
\r
80 namespace boost { namespace mpl {
\r
83 struct not_equal_to_impl< integral_c_tag,integral_c_tag >
\r
85 template< typename N1, typename N2 > struct apply
\r
87 : bool_< ( BOOST_MPL_AUX_VALUE_WKND(N1)::value != BOOST_MPL_AUX_VALUE_WKND(N2)::value ) >
\r