x
Yes
No
Do you want to visit DriveHQ English website?
首页
产品服务
价格
免费试用
下载客户端
关于我们
云文件服务
|
云备份服务
|
FTP服务
|
企业邮箱服务
|
网站托管
|
客户端软件
云文件服务
云备份服务
FTP服务
企业级邮箱服务
网站托管
客户端软件
generic_hook.hpp - Hosted on DriveHQ Cloud IT Platform
返回上层目录
上传
下载
共享
发布
新建文件夹
新建文件
复制
剪切
删除
粘贴
评论
升级服务
路径: \\game3dprogramming\materials\GameFactory\GameFactoryDemo\references\boost_1_35_0\boost\intrusive\detail\generic_hook.hpp
旋转
特效
属性
历史版本
///////////////////////////////////////////////////////////////////////////// // // (C) Copyright Ion Gaztanaga 2007 // // 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) // // See http://www.boost.org/libs/intrusive for documentation. // ///////////////////////////////////////////////////////////////////////////// #ifndef BOOST_INTRUSIVE_GENERIC_HOOK_HPP #define BOOST_INTRUSIVE_GENERIC_HOOK_HPP #include
#include
#include
#include
#include
#include
namespace boost { namespace intrusive { namespace detail { /// @cond enum { NoBaseHook , ListBaseHook , SlistBaseHook , SetBaseHook , UsetBaseHook , SplaySetBaseHook , AvlSetBaseHook , BsSetBaseHook }; struct no_default_definer{}; template
struct default_definer; template
struct default_definer
{ typedef Hook default_list_hook; }; template
struct default_definer
{ typedef Hook default_slist_hook; }; template
struct default_definer
{ typedef Hook default_set_hook; }; template
struct default_definer
{ typedef Hook default_uset_hook; }; template
struct default_definer
{ typedef Hook default_splay_set_hook; }; template
struct default_definer
{ typedef Hook default_avl_set_hook; }; template
struct default_definer
{ typedef Hook default_bs_set_hook; }; template
struct make_default_definer { typedef typename detail::if_c < BaseHookType != 0 , default_definer
, no_default_definer>::type type; }; template < class GetNodeAlgorithms , class Tag , link_mode_type LinkMode , int HookType > struct make_node_holder { typedef typename detail::if_c ::value , detail::node_holder < typename GetNodeAlgorithms::type::node_traits::node , Tag , LinkMode , HookType> , typename GetNodeAlgorithms::type::node_traits::node >::type type; }; /// @endcond template < class GetNodeAlgorithms , class Tag , link_mode_type LinkMode , int HookType > class generic_hook /// @cond //If the hook is a base hook, derive generic hook from detail::node_holder //so that a unique base class is created to convert from the node //to the type. This mechanism will be used by base_hook_traits. // //If the hook is a member hook, generic hook will directly derive //from the hook. : public make_default_definer < generic_hook
, detail::is_same
::value*HookType >::type , public make_node_holder
::type /// @endcond { public: /// @cond struct boost_intrusive_tags { static const int hook_type = HookType; static const link_mode_type link_mode = LinkMode; typedef Tag tag; typedef typename GetNodeAlgorithms::type node_algorithms; typedef typename node_algorithms::node_traits node_traits; typedef typename node_traits::node node; typedef typename node_traits::node_ptr node_ptr; typedef typename node_traits::const_node_ptr const_node_ptr; static const bool is_base_hook = !detail::is_same
::value; enum { safemode_or_autounlink = (int)link_mode == (int)auto_unlink || (int)link_mode == (int)safe_link }; }; /// @endcond generic_hook() { if(boost_intrusive_tags::safemode_or_autounlink){ boost_intrusive_tags::node_algorithms::init (static_cast
(this)); } } generic_hook(const generic_hook& ) { if(boost_intrusive_tags::safemode_or_autounlink){ boost_intrusive_tags::node_algorithms::init (static_cast
(this)); } } generic_hook& operator=(const generic_hook& ) { return *this; } ~generic_hook() { destructor_impl (*this, detail::link_dispatch
()); } void swap_nodes(generic_hook &other) { boost_intrusive_tags::node_algorithms::swap_nodes ( static_cast
(this) , static_cast
(&other)); } bool is_linked() const { //is_linked() can be only used in safe-mode or auto-unlink BOOST_STATIC_ASSERT(( boost_intrusive_tags::safemode_or_autounlink )); return !boost_intrusive_tags::node_algorithms::unique (static_cast
(this)); } void unlink() { BOOST_STATIC_ASSERT(( (int)boost_intrusive_tags::link_mode == (int)auto_unlink )); boost_intrusive_tags::node_algorithms::unlink (static_cast
(this)); boost_intrusive_tags::node_algorithms::init (static_cast
(this)); } }; } //namespace detail } //namespace intrusive } //namespace boost #include
#endif //BOOST_INTRUSIVE_GENERIC_HOOK_HPP
generic_hook.hpp
网页地址
文件地址
上一页
7/18
下一页
下载
( 5 KB )
Comments
Total ratings:
0
Average rating:
无评论
of 10
Would you like to comment?
Join now
, or
Logon
if you are already a member.