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

Private GIT Repository
b1fdec4ce0110afa802f94c2e10736cd09c9d886
[canny.git] / stc / exp / ml_stc_linux_make_v1.0 / include / boost / mpl / negate.hpp
1 \r
2 #ifndef BOOST_MPL_NEGATE_HPP_INCLUDED\r
3 #define BOOST_MPL_NEGATE_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: negate.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/integral_c.hpp>\r
18 #include <boost/mpl/aux_/msvc_eti_base.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/eti.hpp>\r
22 #include <boost/mpl/aux_/config/integral.hpp>\r
23 #include <boost/mpl/aux_/config/static_constant.hpp>\r
24 \r
25 namespace boost { namespace mpl {\r
26 \r
27 template< typename Tag > struct negate_impl;\r
28 \r
29 template< typename T > struct negate_tag\r
30 {\r
31     typedef typename T::tag type;\r
32 };\r
33 \r
34 template<\r
35       typename BOOST_MPL_AUX_NA_PARAM(N)\r
36     >\r
37 struct negate\r
38 #if !defined(BOOST_MPL_CFG_MSVC_ETI_BUG)\r
39     : negate_impl<\r
40           typename negate_tag<N>::type\r
41         >::template apply<N>::type\r
42 #else\r
43     : aux::msvc_eti_base< typename apply_wrap1<\r
44           negate_impl< typename negate_tag<N>::type >\r
45         , N\r
46         >::type >::type\r
47 #endif\r
48 {\r
49     BOOST_MPL_AUX_LAMBDA_SUPPORT(1, negate, (N))\r
50 };\r
51 \r
52 BOOST_MPL_AUX_NA_SPEC(1, negate)\r
53 \r
54 \r
55 #if defined(BOOST_MPL_CFG_NO_NESTED_VALUE_ARITHMETIC)\r
56 namespace aux {\r
57 template< typename T, T n > struct negate_wknd\r
58 {\r
59     BOOST_STATIC_CONSTANT(T, value = -n);\r
60     typedef integral_c<T,value> type;\r
61 };\r
62 }\r
63 #endif\r
64 \r
65 template<>\r
66 struct negate_impl<integral_c_tag>\r
67 {\r
68 #if defined(BOOST_MPL_CFG_NO_NESTED_VALUE_ARITHMETIC)\r
69     template< typename N > struct apply\r
70         : aux::negate_wknd< typename N::value_type, N::value >\r
71 #else\r
72     template< typename N > struct apply\r
73         : integral_c< typename N::value_type, (-N::value) >\r
74 #endif    \r
75     {\r
76     };\r
77 };\r
78 \r
79 }}\r
80 \r
81 #endif // BOOST_MPL_NEGATE_HPP_INCLUDED\r