3 // Copyright (c) 2006-2007 Matias Capeletto
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)
9 /// \file views/list_set_view.hpp
10 /// \brief View of a side of a bimap that is signature compatible with std::list.
12 #ifndef BOOST_BIMAP_VIEWS_LIST_SET_VIEW_HPP
13 #define BOOST_BIMAP_VIEWS_LIST_SET_VIEW_HPP
15 #if defined(_MSC_VER) && (_MSC_VER>=1200)
19 #include <boost/config.hpp>
21 #include <boost/bimap/container_adaptor/list_adaptor.hpp>
22 #include <boost/bimap/detail/set_view_base.hpp>
28 /// \brief View of a bimap that is signature compatible with std::list.
31 This class uses container_adaptor and iterator_adaptor to wrapped a index of the
32 multi_index bimap core so it can be used as a std::list.
34 See also const_list_set_view.
37 template< class CoreIndex
>
40 public BOOST_BIMAP_SEQUENCED_SET_VIEW_CONTAINER_ADAPTOR(
43 reverse_iterator
, const_reverse_iterator
46 public ::boost::bimaps::detail::
47 set_view_base
< list_set_view
< CoreIndex
>, CoreIndex
>
49 BOOST_BIMAP_SET_VIEW_BASE_FRIEND(list_set_view
,CoreIndex
)
51 typedef BOOST_BIMAP_SEQUENCED_SET_VIEW_CONTAINER_ADAPTOR(
54 reverse_iterator
, const_reverse_iterator
60 list_set_view(BOOST_DEDUCED_TYPENAME
base_::base_type
& c
) :
63 list_set_view
& operator=(const list_set_view
& v
)
65 this->base() = v
.base();
69 BOOST_BIMAP_VIEW_ASSIGN_IMPLEMENTATION(base_
)
71 BOOST_BIMAP_VIEW_FRONT_BACK_IMPLEMENTATION(base_
)
73 // Rearrange Operations
75 void relocate(BOOST_DEDUCED_TYPENAME
base_::iterator position
,
76 BOOST_DEDUCED_TYPENAME
base_::iterator i
)
78 this->base().relocate(
79 this->template functor
<
80 BOOST_DEDUCED_TYPENAME
base_::iterator_to_base
>()(position
),
81 this->template functor
<
82 BOOST_DEDUCED_TYPENAME
base_::iterator_to_base
>()(i
)
86 void relocate(BOOST_DEDUCED_TYPENAME
base_::iterator position
,
87 BOOST_DEDUCED_TYPENAME
base_::iterator first
,
88 BOOST_DEDUCED_TYPENAME
base_::iterator last
)
90 this->base().relocate(
91 this->template functor
<
92 BOOST_DEDUCED_TYPENAME
base_::iterator_to_base
>()(position
),
93 this->template functor
<
94 BOOST_DEDUCED_TYPENAME
base_::iterator_to_base
>()(first
),
95 this->template functor
<
96 BOOST_DEDUCED_TYPENAME
base_::iterator_to_base
>()(last
)
103 } // namespace bimaps
107 #endif // BOOST_BIMAP_VIEWS_LIST_SET_VIEW_HPP