x
Yes
No
Do you want to visit DriveHQ English website?
首页
产品服务
价格
免费试用
下载客户端
关于我们
云文件服务
|
云备份服务
|
FTP服务
|
企业邮箱服务
|
网站托管
|
客户端软件
云文件服务
云备份服务
FTP服务
企业级邮箱服务
网站托管
客户端软件
extended_type_info_typeid.hpp - Hosted on DriveHQ Cloud IT Platform
返回上层目录
上传
下载
共享
发布
新建文件夹
新建文件
复制
剪切
删除
粘贴
评论
升级服务
路径: \\game3dprogramming\materials\GameFactory\GameFactoryDemo\references\boost_1_35_0\boost\serialization\extended_type_info_typeid.hpp
旋转
特效
属性
历史版本
#ifndef BOOST_SERIALIZATION_EXTENDED_TYPE_INFO_TYPEID_HPP #define BOOST_SERIALIZATION_EXTENDED_TYPE_INFO_TYPEID_HPP /////////1/////////2/////////3/////////4/////////5/////////6/////////7/////////8 // MS compatible compilers support #pragma once #if defined(_MSC_VER) && (_MSC_VER >= 1020) # pragma once #endif // extended_type_info_typeid.hpp: implementation for version that depends // on runtime typing (rtti - typeid) but uses a user specified string // as the portable class identifier. // (C) Copyright 2002 Robert Ramey - http://www.rrsd.com . // Use, modification and distribution is subject to 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 for updates, documentation, and revision history. #include
#include
//#include
#include
#include
#include
#include
#include
#include
// must be the last header #ifdef BOOST_MSVC # pragma warning(push) # pragma warning(disable : 4251 4231 4660 4275) #endif namespace boost { namespace serialization { namespace detail { class BOOST_SERIALIZATION_DECL(BOOST_PP_EMPTY()) extended_type_info_typeid_0 : public extended_type_info { private: virtual bool less_than(const extended_type_info &rhs) const; protected: static const extended_type_info * get_derived_extended_type_info(const std::type_info & ti); extended_type_info_typeid_0(); // account for bogus gcc warning #if defined(__GNUC__) virtual #endif ~extended_type_info_typeid_0(); public: virtual const std::type_info & get_eti() const = 0; }; /////////////////////////////////////////////////////////////////////////////// // layer to fold T and const T into the same table entry. template
class extended_type_info_typeid_1 : public detail::extended_type_info_typeid_0 { private: virtual const std::type_info & get_eti() const { return typeid(T); } protected: // private constructor to inhibit any existence other than the // static one extended_type_info_typeid_1() : detail::extended_type_info_typeid_0() { self_register(); // add type to type table } public: struct is_polymorphic { typedef BOOST_DEDUCED_TYPENAME boost::is_polymorphic
::type type; BOOST_STATIC_CONSTANT(bool, value = is_polymorphic::type::value); }; static const extended_type_info * get_derived_extended_type_info(const T & t){ // note: this implementation - based on usage of typeid (rtti) // only works if the class has at least one virtual function. // BOOST_STATIC_WARNING( // static_cast
(is_polymorphic::value) // ); return detail::extended_type_info_typeid_0::get_derived_extended_type_info(typeid(t)); } static extended_type_info * get_instance(){ static extended_type_info_typeid_1
instance; return & instance; } static void export_register(const char * key){ get_instance()->key_register(key); } }; } // namespace detail /////////////////////////////////////////////////////////////////////////////// template
class extended_type_info_typeid : public detail::extended_type_info_typeid_1
{}; } // namespace serialization } // namespace boost /////////////////////////////////////////////////////////////////////////////// // If no other implementation has been designated as default, // use this one. To use this implementation as the default, specify it // before any of the other headers. #ifndef BOOST_SERIALIZATION_DEFAULT_TYPE_INFO #define BOOST_SERIALIZATION_DEFAULT_TYPE_INFO namespace boost { namespace serialization { template
struct extended_type_info_impl { typedef BOOST_DEDUCED_TYPENAME boost::serialization::extended_type_info_typeid
type; }; } // namespace serialization } // namespace boost #endif #ifdef BOOST_MSVC #pragma warning(pop) #endif #include
// pops abi_suffix.hpp pragmas #endif // BOOST_SERIALIZATION_EXTENDED_TYPE_INFO_TYPEID_HPP
extended_type_info_typeid.hpp
网页地址
文件地址
上一页
16/51
下一页
下载
( 4 KB )
Comments
Total ratings:
0
Average rating:
无评论
of 10
Would you like to comment?
Join now
, or
Logon
if you are already a member.