x
Yes
No
Do you want to visit DriveHQ English website?
首页
产品服务
价格
免费试用
下载客户端
关于我们
云文件服务
|
云备份服务
|
FTP服务
|
企业邮箱服务
|
网站托管
|
客户端软件
云文件服务
云备份服务
FTP服务
企业级邮箱服务
网站托管
客户端软件
mutant_relation.hpp - Hosted on DriveHQ Cloud IT Platform
返回上层目录
上传
下载
共享
发布
新建文件夹
新建文件
复制
剪切
删除
粘贴
评论
升级服务
路径: \\game3dprogramming\materials\GameFactory\GameFactoryDemo\references\boost_1_35_0\boost\bimap\relation\mutant_relation.hpp
旋转
特效
属性
历史版本
// 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/mutant_relation.hpp /// \brief Defines the mutant_relation class #ifndef BOOST_BIMAP_RELATION_MUTANT_RELATION_HPP #define BOOST_BIMAP_RELATION_MUTANT_RELATION_HPP #if defined(_MSC_VER) && (_MSC_VER>=1200) #pragma once #endif #include
#include
#include
#include
#include
#include
#include
// Boost.Bimap #include
#include
#include
#include
#include
#include
#include
#include
#include
namespace boost { namespace bimaps { namespace relation { namespace detail { // This class is included so structured_pair and mutant_relation share // exactly the same class layout template< class LeftType, class RightType, bool force_mutable > class relation_storage : public symmetrical_base
{ typedef symmetrical_base
base_; typedef relation_storage storage_; public: typedef relation_storage
non_mutable_storage; typedef ::boost::mpl::vector2 < relation_storage< LeftType, RightType, true >, relation_storage< LeftType, RightType, false > > mutant_views; //@{ /// data BOOST_DEDUCED_TYPENAME base_::left_value_type left; BOOST_DEDUCED_TYPENAME base_::right_value_type right; //@} relation_storage() {} relation_storage(BOOST_DEDUCED_TYPENAME ::boost::call_traits< BOOST_DEDUCED_TYPENAME base_::left_value_type >::param_type l, BOOST_DEDUCED_TYPENAME ::boost::call_traits< BOOST_DEDUCED_TYPENAME base_::right_value_type >::param_type r) : left(l), right(r) {} BOOST_DEDUCED_TYPENAME base_:: left_value_type & get_left() { return left; } const BOOST_DEDUCED_TYPENAME base_:: left_value_type & get_left()const { return left; } BOOST_DEDUCED_TYPENAME base_::right_value_type & get_right() { return right; } const BOOST_DEDUCED_TYPENAME base_::right_value_type & get_right()const { return right; } }; template< class TA, class TB, class Info, bool force_mutable > class relation_info_hook : public ::boost::bimaps::relation::detail::relation_storage
{ typedef ::boost::bimaps::relation::detail:: relation_storage
base_; typedef BOOST_DEDUCED_TYPENAME ::boost::bimaps::tags::support:: default_tagged
::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: relation_info_hook() {} relation_info_hook( BOOST_DEDUCED_TYPENAME ::boost::call_traits< BOOST_DEDUCED_TYPENAME base_::left_value_type >::param_type l, BOOST_DEDUCED_TYPENAME ::boost::call_traits< BOOST_DEDUCED_TYPENAME base_::right_value_type >::param_type r, BOOST_DEDUCED_TYPENAME ::boost::call_traits< info_type >::param_type i = info_type() ) : base_(l,r), info(i) {} template< class Relation > relation_info_hook( const Relation & rel ) : base_(rel.left,rel.right), info(rel.info) {} template< class Relation > void change_to( const Relation & rel ) { base_::left = rel.left ; base_::right = rel.right; info = rel.info ; } #ifndef BOOST_BIMAP_DISABLE_SERIALIZATION template< class Archive > void serialize(Archive & ar, const unsigned int version) { ar & ::boost::serialization::make_nvp("left" , base_::left ); ar & ::boost::serialization::make_nvp("right", base_::right); ar & ::boost::serialization::make_nvp("info" , info ); } #endif // BOOST_BIMAP_DISABLE_SERIALIZATION }; template< class TA, class TB, bool force_mutable> class relation_info_hook
: public ::boost::bimaps::relation::detail::relation_storage
{ typedef ::boost::bimaps::relation::detail:: relation_storage
base_; public: typedef ::boost::mpl::na info_type; typedef member_at::info info_tag; protected: relation_info_hook() {} relation_info_hook( BOOST_DEDUCED_TYPENAME ::boost::call_traits< BOOST_DEDUCED_TYPENAME base_::left_value_type >::param_type l, BOOST_DEDUCED_TYPENAME ::boost::call_traits< BOOST_DEDUCED_TYPENAME base_::right_value_type >::param_type r) : base_(l,r) {} template< class Relation > relation_info_hook( const Relation & rel ) : base_(rel.left,rel.right) {} template< class Relation > void change_to( const Relation & rel ) { base_::left = rel.left ; base_::right = rel.right; } #ifndef BOOST_BIMAP_DISABLE_SERIALIZATION template< class Archive > void serialize(Archive & ar, const unsigned int version) { ar & ::boost::serialization::make_nvp("left" , base_::left ); ar & ::boost::serialization::make_nvp("right", base_::right); } #endif // BOOST_BIMAP_DISABLE_SERIALIZATION }; } // namespace detail /// \brief Abstraction of a related pair of values, that extends the std::pair class. /** The mutant_relation is a mutant class. A mutant class can mutate with zero overhead in other classes that are called views. Each view has to be StorageCompatible with the base class of the mutant. Note that all the views have the following storage structure: \verbatim __________ | | | TA | |__________| | | | TB | |__________| \endverbatim See also select_relation, standard_relation. \ingroup relation_group **/ template< class TA, class TB, class Info = ::boost::mpl::na, bool force_mutable = false > class mutant_relation : public ::boost::bimaps::relation::detail:: relation_info_hook
{ typedef ::boost::bimaps::relation::detail:: relation_info_hook
base_; public: // We have to know the type of the base where the types are // defined because Boost.MultiIndex requires it. typedef ::boost::bimaps::relation::detail:: relation_storage
storage_base; /// Above view, non mutable view of the relation typedef mutant_relation
above_view; //@{ /// A signature compatible std::pair that is a view of the relation. typedef structured_pair< TA, TB, Info, normal_layout > left_pair; typedef structured_pair< TB, TA, Info, mirror_layout > right_pair; //@} typedef ::boost::mpl::vector4 < left_pair, right_pair, mutant_relation< TA, TB, Info, true >, mutant_relation< TA, TB, Info, false > > mutant_views; mutant_relation() {} mutant_relation(BOOST_DEDUCED_TYPENAME ::boost::call_traits< BOOST_DEDUCED_TYPENAME base_:: left_value_type >::param_type l, BOOST_DEDUCED_TYPENAME ::boost::call_traits< BOOST_DEDUCED_TYPENAME base_::right_value_type >::param_type r) : base_(l,r) {} mutant_relation(BOOST_DEDUCED_TYPENAME ::boost::call_traits< BOOST_DEDUCED_TYPENAME base_:: left_value_type >::param_type l, BOOST_DEDUCED_TYPENAME ::boost::call_traits< BOOST_DEDUCED_TYPENAME base_::right_value_type >::param_type r, BOOST_DEDUCED_TYPENAME ::boost::call_traits< BOOST_DEDUCED_TYPENAME base_::info_type >::param_type i) : base_(l,r,i) {} mutant_relation(const mutant_relation
& rel) : base_(rel) {} mutant_relation(const mutant_relation
& rel) : base_(rel) {} // Operators template< bool FM > mutant_relation& operator=(const mutant_relation
& rel) { base_::change_to(rel); return *this; } // The following functions are redundant if you only consider this class. // They are included to make easier the construction of the get and the // pair_by metafunction. Remember that not all compiler supports the mutant // idiom. left_pair & get_left_pair() { return ::boost::bimaps::relation::detail::mutate
(*this); } const left_pair & get_left_pair() const { return ::boost::bimaps::relation::detail::mutate
(*this); } right_pair & get_right_pair() { return ::boost::bimaps::relation::detail::mutate
(*this); } const right_pair & get_right_pair() const { return ::boost::bimaps::relation::detail::mutate
(*this); } above_view & get_view() { return ::boost::bimaps::relation::detail::mutate
(*this); } const above_view & get_view() const { return ::boost::bimaps::relation::detail::mutate
(*this); } template< class Tag > const BOOST_DEDUCED_TYPENAME ::boost::bimaps::relation::support:: result_of::get
::type get(BOOST_EXPLICIT_TEMPLATE_TYPE(Tag)) const { return ::boost::bimaps::relation::support::get
(*this); } template< class Tag > BOOST_DEDUCED_TYPENAME ::boost::bimaps::relation::support:: result_of::get
::type get(BOOST_EXPLICIT_TEMPLATE_TYPE(Tag)) { return ::boost::bimaps::relation::support::get
(*this); } #ifndef BOOST_BIMAP_DISABLE_SERIALIZATION private: friend class ::boost::serialization::access; template
void serialize(Archive & ar, const unsigned int version) { base_::serialize(ar,version); } #endif // BOOST_BIMAP_DISABLE_SERIALIZATION }; // hash value template< class FirstType, class SecondType, bool FM > std::size_t hash_value(const detail::relation_storage
& r) { std::size_t seed = 0; ::boost::hash_combine(seed, r. left ); ::boost::hash_combine(seed, r.right ); return seed; } // mutant_relation - mutant_relation template< class FirstType, class SecondType, bool FM1, bool FM2 > bool operator==(const detail::relation_storage
& a, const detail::relation_storage
& b) { return ( ( a.left == b.left ) && ( a.right == b.right ) ); } template< class FirstType, class SecondType, bool FM1, bool FM2 > bool operator!=(const detail::relation_storage
& a, const detail::relation_storage
& b) { return ! ( a == b ); } template< class FirstType, class SecondType, bool FM1, bool FM2 > bool operator<(const detail::relation_storage
& a, const detail::relation_storage
& b) { return ( ( a.left < b.left ) || (( a.left == b.left ) && ( a.right < b.right ))); } template< class FirstType, class SecondType, bool FM1, bool FM2 > bool operator<=(const detail::relation_storage
& a, const detail::relation_storage
& b) { return ( ( a.left < b.left ) || (( a.left == b.left ) && ( a.right <= b.right ))); } template< class FirstType, class SecondType, bool FM1, bool FM2 > bool operator>(const detail::relation_storage
& a, const detail::relation_storage
& b) { return ( ( a.left > b.left ) || (( a.left == b.left ) && ( a.right > b.right ))); } template< class FirstType, class SecondType, bool FM1, bool FM2 > bool operator>=(const detail::relation_storage
& a, const detail::relation_storage
& b) { return ( ( a.left > b.left ) || (( a.left == b.left ) && ( a.right >= b.right ))); } } // namespace relation } // namespace bimaps } // namespace boost #endif // BOOST_BIMAP_RELATION_MUTANT_RELATION_HPP
mutant_relation.hpp
网页地址
文件地址
上一页
2/5
下一页
下载
( 13 KB )
Comments
Total ratings:
0
Average rating:
无评论
of 10
Would you like to comment?
Join now
, or
Logon
if you are already a member.