123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206 |
- #ifndef BOOST_BIMAP_SET_OF_HPP
- #define BOOST_BIMAP_SET_OF_HPP
- #if defined(_MSC_VER)
- #pragma once
- #endif
- #include <boost/config.hpp>
- #include <boost/bimap/detail/user_interface_config.hpp>
- #include <functional>
- #include <boost/mpl/bool.hpp>
- #include <boost/mpl/aux_/na.hpp>
- #include <boost/concept_check.hpp>
- #include <boost/bimap/detail/concept_tags.hpp>
- #include <boost/bimap/detail/generate_index_binder.hpp>
- #include <boost/bimap/detail/generate_view_binder.hpp>
- #include <boost/bimap/detail/generate_relation_binder.hpp>
- #include <boost/bimap/tags/support/value_type_of.hpp>
- #include <boost/multi_index/ordered_index.hpp>
- #include <boost/bimap/views/map_view.hpp>
- #include <boost/bimap/views/set_view.hpp>
- namespace boost {
- namespace bimaps {
- template
- <
- class KeyType,
- class KeyCompare = std::less< BOOST_DEDUCED_TYPENAME
- ::boost::bimaps::tags::support::value_type_of<KeyType>::type >
- >
- struct set_of : public ::boost::bimaps::detail::set_type_of_tag
- {
-
- typedef KeyType user_type;
-
- typedef BOOST_DEDUCED_TYPENAME ::boost::bimaps::tags::support::
- value_type_of<user_type>::type value_type;
-
- typedef KeyCompare key_compare;
- struct lazy_concept_checked
- {
- BOOST_CLASS_REQUIRE ( value_type,
- boost, AssignableConcept );
- BOOST_CLASS_REQUIRE4( key_compare, bool, value_type, value_type,
- boost, BinaryFunctionConcept );
- typedef set_of type;
- };
- BOOST_BIMAP_GENERATE_INDEX_BINDER_1CP(
-
- multi_index::ordered_unique,
-
- key_compare
- )
- BOOST_BIMAP_GENERATE_MAP_VIEW_BINDER(
-
- views::map_view
- )
- BOOST_BIMAP_GENERATE_SET_VIEW_BINDER(
-
- views::set_view
- )
- typedef mpl::bool_<false> mutable_key;
- };
- template< class KeyCompare = std::less< _relation > >
- struct set_of_relation : public ::boost::bimaps::detail::set_type_of_relation_tag
- {
-
- typedef KeyCompare key_compare;
- BOOST_BIMAP_GENERATE_RELATION_BINDER_1CP(
-
- set_of,
-
- key_compare
- )
- typedef mpl::bool_<false> left_mutable_key;
- typedef mpl::bool_<false> right_mutable_key;
- };
- }
- }
- #endif
|