欢迎来到虫虫下载站 | 资源下载 资源专辑 关于我们
虫虫下载站

structured_pair.hpp

Boost provides free peer-reviewed portable C++ source libraries. We emphasize libraries that work
HPP
第 1 页 / 共 2 页
字号:
// Boost.Bimap//// Copyright (c) 2006-2007 Matias Capeletto//// 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)/// \file relation/structured_pair.hpp/// \brief Defines the structured_pair class.#ifndef BOOST_BIMAP_RELATION_STRUCTURED_PAIR_HPP#define BOOST_BIMAP_RELATION_STRUCTURED_PAIR_HPP#if defined(_MSC_VER) && (_MSC_VER>=1200)#pragma once#endif#include <boost/config.hpp>#include <utility>#include <boost/type_traits/remove_const.hpp>#include <boost/mpl/aux_/na.hpp>#include <boost/call_traits.hpp>#include <boost/utility/enable_if.hpp>#include <boost/type_traits/is_same.hpp>#include <boost/mpl/if.hpp>#include <boost/mpl/vector.hpp>#include <boost/bimap/detail/debug/static_error.hpp>#include <boost/bimap/relation/pair_layout.hpp>#include <boost/bimap/relation/symmetrical_base.hpp>#include <boost/bimap/relation/support/get.hpp>#include <boost/bimap/tags/support/value_type_of.hpp>namespace boost {namespace bimaps {namespace relation {namespace detail {/// \brief Storage definition of the left view of a mutant relation./**See also storage_finder, mirror_storage.                                                                            **/template< class FirstType, class SecondType >class normal_storage :    public symmetrical_base<FirstType,SecondType>{    typedef symmetrical_base<FirstType,SecondType> base_;    public:    typedef normal_storage storage_;    typedef BOOST_DEDUCED_TYPENAME base_::left_value_type  first_type;    typedef BOOST_DEDUCED_TYPENAME base_::right_value_type second_type;    first_type   first;    second_type  second;    normal_storage() {}    normal_storage(BOOST_DEDUCED_TYPENAME ::boost::call_traits<                        first_type >::param_type f,                   BOOST_DEDUCED_TYPENAME ::boost::call_traits<                        second_type>::param_type s)        : first(f), second(s) {}          BOOST_DEDUCED_TYPENAME base_:: left_value_type &  get_left()      { return first;  }    const BOOST_DEDUCED_TYPENAME base_:: left_value_type &  get_left()const { return first;  }          BOOST_DEDUCED_TYPENAME base_::right_value_type & get_right()      { return second; }    const BOOST_DEDUCED_TYPENAME base_::right_value_type & get_right()const { return second; }};/// \brief Storage definition of the right view of a mutant relation./**See also storage_finder, normal_storage.                                                                            **/template< class FirstType, class SecondType >class mirror_storage :    public symmetrical_base<SecondType,FirstType>{    typedef symmetrical_base<SecondType,FirstType> base_;    public:    typedef mirror_storage storage_;    typedef BOOST_DEDUCED_TYPENAME base_::left_value_type   second_type;    typedef BOOST_DEDUCED_TYPENAME base_::right_value_type  first_type;    second_type  second;    first_type   first;    mirror_storage() {}    mirror_storage(BOOST_DEDUCED_TYPENAME ::boost::call_traits<first_type  >::param_type f,                   BOOST_DEDUCED_TYPENAME ::boost::call_traits<second_type >::param_type s)        : second(s), first(f)  {}          BOOST_DEDUCED_TYPENAME base_:: left_value_type &  get_left()      { return second; }    const BOOST_DEDUCED_TYPENAME base_:: left_value_type &  get_left()const { return second; }          BOOST_DEDUCED_TYPENAME base_::right_value_type & get_right()      { return first;  }    const BOOST_DEDUCED_TYPENAME base_::right_value_type & get_right()const { return first;  }};/** \struct boost::bimaps::relation::storage_finder\brief Obtain the a storage with the correct layout.\codetemplate< class FirstType, class SecondType, class Layout >struct storage_finder{    typedef {normal/mirror}_storage<FirstType,SecondType> type;};\endcodeSee also normal_storage, mirror_storage.                                                                        **/#ifndef BOOST_BIMAP_DOXYGEN_WILL_NOT_PROCESS_THE_FOLLOWING_LINEStemplate<    class FirstType,    class SecondType,    class Layout>struct storage_finder{    typedef normal_storage<FirstType,SecondType> type;};template<    class FirstType,    class SecondType>struct storage_finder<FirstType,SecondType,mirror_layout>{    typedef mirror_storage<FirstType,SecondType> type;};#endif // BOOST_BIMAP_DOXYGEN_WILL_NOT_PROCESS_THE_FOLLOWING_LINEStemplate< class TA, class TB, class Info, class Layout >class pair_info_hook :    public ::boost::bimaps::relation::detail::storage_finder<TA,TB,Layout>::type{    typedef BOOST_DEDUCED_TYPENAME ::boost::bimaps::relation::detail::storage_finder<TA,TB,Layout>::type base_;    typedef BOOST_DEDUCED_TYPENAME ::boost::bimaps::tags::support::        default_tagged<Info,member_at::info>::type tagged_info_type;    public:    typedef BOOST_DEDUCED_TYPENAME tagged_info_type::value_type info_type;    typedef BOOST_DEDUCED_TYPENAME tagged_info_type::tag        info_tag;    info_type info;    protected:    pair_info_hook() {}    pair_info_hook( BOOST_DEDUCED_TYPENAME ::boost::call_traits<                        BOOST_DEDUCED_TYPENAME base_::first_type                    >::param_type f,                    BOOST_DEDUCED_TYPENAME ::boost::call_traits<                        BOOST_DEDUCED_TYPENAME base_::second_type                    >::param_type s,                    BOOST_DEDUCED_TYPENAME ::boost::call_traits<                        info_type                    >::param_type i = info_type() )        : base_(f,s), info(i) {}    template< class Pair >    pair_info_hook( const Pair & p) :        base_(p.first,p.second),        info(p.info) {}    template< class Pair >    void change_to( const Pair & p )    {        base_::first  = p.first ;        base_::second = p.second;        info          = p.info  ;    }    void clear_info()    {        info = info_type();    };};template< class TA, class TB, class Layout>class pair_info_hook<TA,TB,::boost::mpl::na,Layout> :    public ::boost::bimaps::relation::detail::storage_finder<TA,TB,Layout>::type{    typedef BOOST_DEDUCED_TYPENAME ::boost::bimaps::relation::detail::storage_finder<TA,TB,Layout>::type base_;    public:    typedef ::boost::mpl::na info_type;    typedef member_at::info info_tag;    protected:    pair_info_hook() {}    pair_info_hook( BOOST_DEDUCED_TYPENAME ::boost::call_traits<                        BOOST_DEDUCED_TYPENAME base_::first_type                    >::param_type f,                    BOOST_DEDUCED_TYPENAME ::boost::call_traits<                        BOOST_DEDUCED_TYPENAME base_::second_type                    >::param_type s)        : base_(f,s) {}    template< class Pair >    pair_info_hook( const Pair & p ) :        base_(p.first,p.second) {}    template< class Pair >    void change_to( const Pair & p )    {        base_::first  = p.first ;        base_::second = p.second;    }    void clear_info() {};};} // namespace detailtemplate< class TA, class TB, class Info, bool FM >class mutant_relation;/// \brief A std::pair signature compatible class that allows you to control///        the internal structure of the data.

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -