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

Private GIT Repository
5cd91c04a51fb92e3bf28dc82118c06ed4523949
[canny.git] / stc / exp / ml_stc_linux_make_v1.0 / include / boost / mpl / map / aux_ / item.hpp
1 \r
2 #ifndef BOOST_MPL_MAP_AUX_ITEM_HPP_INCLUDED\r
3 #define BOOST_MPL_MAP_AUX_ITEM_HPP_INCLUDED\r
4 \r
5 // Copyright Aleksey Gurtovoy 2003-2004\r
6 // Copyright David Abrahams 2003-2004\r
7 //\r
8 // Distributed under the Boost Software License, Version 1.0. \r
9 // (See accompanying file LICENSE_1_0.txt or copy at \r
10 // http://www.boost.org/LICENSE_1_0.txt)\r
11 //\r
12 // See http://www.boost.org/libs/mpl for documentation.\r
13 \r
14 // $Id: item.hpp 49267 2008-10-11 06:19:02Z agurtovoy $\r
15 // $Date: 2008-10-11 02:19:02 -0400 (Sat, 11 Oct 2008) $\r
16 // $Revision: 49267 $\r
17 \r
18 #include <boost/mpl/void.hpp>\r
19 #include <boost/mpl/pair.hpp>\r
20 #include <boost/mpl/long.hpp>\r
21 #include <boost/mpl/next.hpp>\r
22 #include <boost/mpl/prior.hpp>\r
23 #include <boost/mpl/map/aux_/map0.hpp>\r
24 #include <boost/mpl/aux_/order_impl.hpp>\r
25 #include <boost/mpl/aux_/yes_no.hpp>\r
26 #include <boost/mpl/aux_/type_wrapper.hpp>\r
27 #include <boost/mpl/aux_/config/arrays.hpp>\r
28 #include <boost/mpl/aux_/config/typeof.hpp>\r
29 #include <boost/mpl/aux_/config/ctps.hpp>\r
30 \r
31 \r
32 namespace boost { namespace mpl {\r
33 \r
34 #if defined(BOOST_MPL_CFG_TYPEOF_BASED_SEQUENCES)\r
35 \r
36 template< typename Key, typename T, typename Base >\r
37 struct m_item\r
38     : Base\r
39 {\r
40     typedef Key         key_;\r
41     typedef pair<Key,T> item;\r
42     typedef Base        base;\r
43     \r
44     typedef typename next< typename Base::size >::type  size;\r
45     typedef typename next< typename Base::order >::type order;\r
46 \r
47 #if defined(BOOST_MPL_CFG_NO_DEPENDENT_ARRAY_TYPES)\r
48     typedef typename aux::weighted_tag<BOOST_MPL_AUX_MSVC_VALUE_WKND(order)::value>::type order_tag_;\r
49 #else\r
50     typedef char (&order_tag_)[BOOST_MPL_AUX_MSVC_VALUE_WKND(order)::value];\r
51 #endif\r
52 \r
53     BOOST_MPL_AUX_MAP_OVERLOAD( aux::type_wrapper<T>, VALUE_BY_KEY, m_item, aux::type_wrapper<Key>* );\r
54     BOOST_MPL_AUX_MAP_OVERLOAD( aux::type_wrapper<item>, ITEM_BY_ORDER, m_item, order* );\r
55     BOOST_MPL_AUX_MAP_OVERLOAD( order_tag_, ORDER_BY_KEY, m_item, aux::type_wrapper<Key>* );\r
56 };\r
57 \r
58 \r
59 template< typename Key, typename Base >\r
60 struct m_mask\r
61     : Base\r
62 {\r
63     typedef void_   key_;\r
64     typedef Base    base;\r
65 \r
66     typedef typename prior< typename Base::size >::type  size;\r
67     typedef typename x_order_impl<Base,Key>::type key_order_;\r
68     \r
69     BOOST_MPL_AUX_MAP_OVERLOAD( aux::type_wrapper<void_>, VALUE_BY_KEY, m_mask, aux::type_wrapper<Key>* );\r
70     BOOST_MPL_AUX_MAP_OVERLOAD( aux::type_wrapper<void_>, ITEM_BY_ORDER, m_mask, key_order_* );\r
71 };\r
72 \r
73 #else // BOOST_MPL_CFG_TYPEOF_BASED_SEQUENCES\r
74 \r
75 \r
76 #   if !defined(BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION)\r
77 \r
78 template< long n, typename Key, typename T, typename Base >\r
79 struct m_item;\r
80 \r
81 #   else\r
82 \r
83 template< long n >\r
84 struct m_item_impl\r
85 {\r
86     template< typename Key, typename T, typename Base >\r
87     struct result_;\r
88 };\r
89 \r
90 template< long n, typename Key, typename T, typename Base >\r
91 struct m_item\r
92     : m_item_impl<n>::result_<Key,T,Base>\r
93 {\r
94 };\r
95 \r
96 \r
97 #   endif\r
98 \r
99 \r
100 template< typename Key, typename T, typename Base >\r
101 struct m_item_\r
102     : Base\r
103 {\r
104     typedef Key     key_;\r
105     typedef Base    base;\r
106     typedef m_item_ type;\r
107     \r
108     typedef typename next< typename Base::size >::type  size;\r
109     typedef typename next< typename Base::order >::type order;\r
110 \r
111 #if defined(BOOST_MPL_CFG_NO_DEPENDENT_ARRAY_TYPES)\r
112     typedef typename aux::weighted_tag<BOOST_MPL_AUX_MSVC_VALUE_WKND(order)::value>::type order_tag_;\r
113 #else\r
114     typedef char (&order_tag_)[BOOST_MPL_AUX_MSVC_VALUE_WKND(order)::value];\r
115 #endif\r
116 \r
117     BOOST_MPL_AUX_MAP_OVERLOAD( order_tag_, ORDER_BY_KEY, m_item_, aux::type_wrapper<Key>* );\r
118 };\r
119 \r
120 template< typename Key, typename Base >\r
121 struct m_mask\r
122     : Base\r
123 {\r
124     typedef void_   key_;\r
125     typedef Base    base;\r
126 \r
127     typedef typename prior< typename Base::size >::type  size;\r
128     typedef typename x_order_impl<Base,Key>::type key_order_;\r
129     \r
130     BOOST_MPL_AUX_MAP_OVERLOAD( aux::no_tag, ORDER_BY_KEY, m_mask, aux::type_wrapper<Key>* );\r
131     BOOST_MPL_AUX_MAP_OVERLOAD( aux::yes_tag, IS_MASKED, m_mask, key_order_* );\r
132 };\r
133 \r
134 #endif // BOOST_MPL_CFG_TYPEOF_BASED_SEQUENCES\r
135 \r
136 }}\r
137 \r
138 #endif // BOOST_MPL_MAP_AUX_ITEM_HPP_INCLUDED\r