123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351 |
- // Copyright Aleksey Gurtovoy 2000-2004
- // Copyright David Abrahams 2003-2004
- //
- // Distributed under the Boost Software License, Version 1.0.
- // (See accompanying file LICENSE_1_0.txt or copy at
- // http://www.boost.org/LICENSE_1_0.txt)
- //
- // Preprocessed version of "boost/mpl/map/map10.hpp" header
- // -- DO NOT modify by hand!
- namespace boost { namespace mpl {
- template<>
- struct m_at_impl<0>
- {
- template< typename Map > struct result_
- {
- typedef typename Map::item0 type;
- };
- };
- template<>
- struct m_item_impl<1>
- {
- template< typename Key, typename T, typename Base > struct result_
- : m_item_< Key,T,Base >
- {
- typedef pair< Key,T > item0;
- };
- };
- template<
- typename P0
- >
- struct map1
- : m_item<
- 1
- , typename P0::first
- , typename P0::second
- , map0< >
- >
- {
- typedef map1 type;
- };
- template<>
- struct m_at_impl<1>
- {
- template< typename Map > struct result_
- {
- typedef typename Map::item1 type;
- };
- };
- template<>
- struct m_item_impl<2>
- {
- template< typename Key, typename T, typename Base > struct result_
- : m_item_< Key,T,Base >
- {
- typedef pair< Key,T > item1;
- };
- };
- template<
- typename P0, typename P1
- >
- struct map2
- : m_item<
- 2
- , typename P1::first
- , typename P1::second
- , map1<P0>
- >
- {
- typedef map2 type;
- };
- template<>
- struct m_at_impl<2>
- {
- template< typename Map > struct result_
- {
- typedef typename Map::item2 type;
- };
- };
- template<>
- struct m_item_impl<3>
- {
- template< typename Key, typename T, typename Base > struct result_
- : m_item_< Key,T,Base >
- {
- typedef pair< Key,T > item2;
- };
- };
- template<
- typename P0, typename P1, typename P2
- >
- struct map3
- : m_item<
- 3
- , typename P2::first
- , typename P2::second
- , map2< P0,P1 >
- >
- {
- typedef map3 type;
- };
- template<>
- struct m_at_impl<3>
- {
- template< typename Map > struct result_
- {
- typedef typename Map::item3 type;
- };
- };
- template<>
- struct m_item_impl<4>
- {
- template< typename Key, typename T, typename Base > struct result_
- : m_item_< Key,T,Base >
- {
- typedef pair< Key,T > item3;
- };
- };
- template<
- typename P0, typename P1, typename P2, typename P3
- >
- struct map4
- : m_item<
- 4
- , typename P3::first
- , typename P3::second
- , map3< P0,P1,P2 >
- >
- {
- typedef map4 type;
- };
- template<>
- struct m_at_impl<4>
- {
- template< typename Map > struct result_
- {
- typedef typename Map::item4 type;
- };
- };
- template<>
- struct m_item_impl<5>
- {
- template< typename Key, typename T, typename Base > struct result_
- : m_item_< Key,T,Base >
- {
- typedef pair< Key,T > item4;
- };
- };
- template<
- typename P0, typename P1, typename P2, typename P3, typename P4
- >
- struct map5
- : m_item<
- 5
- , typename P4::first
- , typename P4::second
- , map4< P0,P1,P2,P3 >
- >
- {
- typedef map5 type;
- };
- template<>
- struct m_at_impl<5>
- {
- template< typename Map > struct result_
- {
- typedef typename Map::item5 type;
- };
- };
- template<>
- struct m_item_impl<6>
- {
- template< typename Key, typename T, typename Base > struct result_
- : m_item_< Key,T,Base >
- {
- typedef pair< Key,T > item5;
- };
- };
- template<
- typename P0, typename P1, typename P2, typename P3, typename P4
- , typename P5
- >
- struct map6
- : m_item<
- 6
- , typename P5::first
- , typename P5::second
- , map5< P0,P1,P2,P3,P4 >
- >
- {
- typedef map6 type;
- };
- template<>
- struct m_at_impl<6>
- {
- template< typename Map > struct result_
- {
- typedef typename Map::item6 type;
- };
- };
- template<>
- struct m_item_impl<7>
- {
- template< typename Key, typename T, typename Base > struct result_
- : m_item_< Key,T,Base >
- {
- typedef pair< Key,T > item6;
- };
- };
- template<
- typename P0, typename P1, typename P2, typename P3, typename P4
- , typename P5, typename P6
- >
- struct map7
- : m_item<
- 7
- , typename P6::first
- , typename P6::second
- , map6< P0,P1,P2,P3,P4,P5 >
- >
- {
- typedef map7 type;
- };
- template<>
- struct m_at_impl<7>
- {
- template< typename Map > struct result_
- {
- typedef typename Map::item7 type;
- };
- };
- template<>
- struct m_item_impl<8>
- {
- template< typename Key, typename T, typename Base > struct result_
- : m_item_< Key,T,Base >
- {
- typedef pair< Key,T > item7;
- };
- };
- template<
- typename P0, typename P1, typename P2, typename P3, typename P4
- , typename P5, typename P6, typename P7
- >
- struct map8
- : m_item<
- 8
- , typename P7::first
- , typename P7::second
- , map7< P0,P1,P2,P3,P4,P5,P6 >
- >
- {
- typedef map8 type;
- };
- template<>
- struct m_at_impl<8>
- {
- template< typename Map > struct result_
- {
- typedef typename Map::item8 type;
- };
- };
- template<>
- struct m_item_impl<9>
- {
- template< typename Key, typename T, typename Base > struct result_
- : m_item_< Key,T,Base >
- {
- typedef pair< Key,T > item8;
- };
- };
- template<
- typename P0, typename P1, typename P2, typename P3, typename P4
- , typename P5, typename P6, typename P7, typename P8
- >
- struct map9
- : m_item<
- 9
- , typename P8::first
- , typename P8::second
- , map8< P0,P1,P2,P3,P4,P5,P6,P7 >
- >
- {
- typedef map9 type;
- };
- template<>
- struct m_at_impl<9>
- {
- template< typename Map > struct result_
- {
- typedef typename Map::item9 type;
- };
- };
- template<>
- struct m_item_impl<10>
- {
- template< typename Key, typename T, typename Base > struct result_
- : m_item_< Key,T,Base >
- {
- typedef pair< Key,T > item9;
- };
- };
- template<
- typename P0, typename P1, typename P2, typename P3, typename P4
- , typename P5, typename P6, typename P7, typename P8, typename P9
- >
- struct map10
- : m_item<
- 10
- , typename P9::first
- , typename P9::second
- , map9< P0,P1,P2,P3,P4,P5,P6,P7,P8 >
- >
- {
- typedef map10 type;
- };
- }}
|