x
Yes
No
Do you want to visit DriveHQ English website?
首页
产品服务
价格
免费试用
下载客户端
关于我们
云文件服务
|
云备份服务
|
FTP服务
|
企业邮箱服务
|
网站托管
|
客户端软件
云文件服务
云备份服务
FTP服务
企业级邮箱服务
网站托管
客户端软件
cast.hpp - Hosted on DriveHQ Cloud IT Platform
返回上层目录
上传
下载
共享
发布
新建文件夹
新建文件
复制
剪切
删除
粘贴
评论
升级服务
路径: \\game3dprogramming\materials\GameFactory\GameFactoryDemo\references\boost_1_35_0\boost\python\cast.hpp
旋转
特效
属性
历史版本
// Copyright David Abrahams 2002. // 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) #ifndef CAST_DWA200269_HPP # define CAST_DWA200269_HPP # include <boost/python/detail/prefix.hpp> # include <boost/type_traits/same_traits.hpp> # include <boost/type_traits/cv_traits.hpp> # include <boost/type.hpp> # include <boost/python/base_type_traits.hpp> # include <boost/python/detail/convertible.hpp> namespace boost { namespace python { namespace detail { template <class Source, class Target> inline Target* upcast_impl(Source*, Target*); template <class Source, class Target> inline Target* upcast(Source* p, yes_convertible, no_convertible, Target*) { return p; } template <class Source, class Target> inline Target* upcast(Source* p, no_convertible, no_convertible, Target*) { typedef typename base_type_traits<Source>::type base; return detail::upcast_impl((base*)p, (Target*)0); } template <bool is_same = true> struct upcaster { template <class T> static inline T* execute(T* x, T*) { return x; } }; template <> struct upcaster<false> { template <class Source, class Target> static inline Target* execute(Source* x, Target*) { return detail::upcast( x, detail::convertible<Target*>::check(x) , detail::convertible<Source*>::check((Target*)0) , (Target*)0); } }; template <class Target, class Source> inline Target* downcast(Source* p, yes_convertible) { return static_cast<Target*>(p); } template <class Target, class Source> inline Target* downcast(Source* p, no_convertible, boost::type<Target>* = 0) { typedef typename base_type_traits<Source>::type base; return (Target*)detail::downcast<base>(p, convertible<Source*>::check((base*)0)); } template <class T> inline void assert_castable(boost::type<T>* = 0) { typedef char must_be_a_complete_type[sizeof(T)]; } template <class Source, class Target> inline Target* upcast_impl(Source* x, Target*) { typedef typename add_cv<Source>::type src_t; typedef typename add_cv<Target>::type target_t; bool const same = is_same<src_t,target_t>::value; return detail::upcaster<same>::execute(x, (Target*)0); } } template <class Target, class Source> inline Target* upcast(Source* x, Target* = 0) { detail::assert_castable<Source>(); detail::assert_castable<Target>(); return detail::upcast_impl(x, (Target*)0); } template <class Target, class Source> inline Target* downcast(Source* x, Target* = 0) { detail::assert_castable<Source>(); detail::assert_castable<Target>(); return detail::downcast<Target>(x, detail::convertible<Source*>::check((Target*)0)); } }} // namespace boost::python #endif // CAST_DWA200269_HPP
cast.hpp
网页地址
文件地址
上一页
10/85
下一页
下载
( 2 KB )
Comments
Total ratings:
0
Average rating:
无评论
of 10
Would you like to comment?
Join now
, or
Logon
if you are already a member.