x
Yes
No
Do you want to visit DriveHQ English website?
首页
产品服务
价格
免费试用
下载客户端
关于我们
云文件服务
|
云备份服务
|
FTP服务
|
企业邮箱服务
|
网站托管
|
客户端软件
云文件服务
云备份服务
FTP服务
企业级邮箱服务
网站托管
客户端软件
bind_template.hpp - Hosted on DriveHQ Cloud IT Platform
返回上层目录
上传
下载
共享
发布
新建文件夹
新建文件
复制
剪切
删除
粘贴
评论
升级服务
路径: \\game3dprogramming\materials\GameFactory\GameFactoryDemo\references\boost_1_35_0\boost\bind\bind_template.hpp
旋转
特效
属性
历史版本
// // bind/bind_template.hpp // // Do not include this header directly. // // Copyright (c) 2001-2004 Peter Dimov and Multi Media Ltd. // // 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/bind/bind.html for documentation. // typedef typename result_traits
::type result_type; result_type operator()() { list0 a; BOOST_BIND_RETURN l_(type
(), f_, a, 0); } result_type operator()() const { list0 a; BOOST_BIND_RETURN l_(type
(), f_, a, 0); } template
result_type operator()(A1 & a1) { list1
a(a1); BOOST_BIND_RETURN l_(type
(), f_, a, 0); } template
result_type operator()(A1 & a1) const { list1
a(a1); BOOST_BIND_RETURN l_(type
(), f_, a, 0); } #if !defined(BOOST_NO_FUNCTION_TEMPLATE_ORDERING) \ && !BOOST_WORKAROUND(__EDG_VERSION__, <= 238) template
result_type operator()(A1 const & a1) { list1
a(a1); BOOST_BIND_RETURN l_(type
(), f_, a, 0); } template
result_type operator()(A1 const & a1) const { list1
a(a1); BOOST_BIND_RETURN l_(type
(), f_, a, 0); } #endif template
result_type operator()(A1 & a1, A2 & a2) { list2
a(a1, a2); BOOST_BIND_RETURN l_(type
(), f_, a, 0); } template
result_type operator()(A1 & a1, A2 & a2) const { list2
a(a1, a2); BOOST_BIND_RETURN l_(type
(), f_, a, 0); } #if !defined(BOOST_NO_FUNCTION_TEMPLATE_ORDERING) \ && !BOOST_WORKAROUND(__EDG_VERSION__, <= 238) template
result_type operator()(A1 const & a1, A2 & a2) { list2
a(a1, a2); BOOST_BIND_RETURN l_(type
(), f_, a, 0); } template
result_type operator()(A1 const & a1, A2 & a2) const { list2
a(a1, a2); BOOST_BIND_RETURN l_(type
(), f_, a, 0); } template
result_type operator()(A1 & a1, A2 const & a2) { list2
a(a1, a2); BOOST_BIND_RETURN l_(type
(), f_, a, 0); } template
result_type operator()(A1 & a1, A2 const & a2) const { list2
a(a1, a2); BOOST_BIND_RETURN l_(type
(), f_, a, 0); } template
result_type operator()(A1 const & a1, A2 const & a2) { list2
a(a1, a2); BOOST_BIND_RETURN l_(type
(), f_, a, 0); } template
result_type operator()(A1 const & a1, A2 const & a2) const { list2
a(a1, a2); BOOST_BIND_RETURN l_(type
(), f_, a, 0); } #endif template
result_type operator()(A1 & a1, A2 & a2, A3 & a3) { list3
a(a1, a2, a3); BOOST_BIND_RETURN l_(type
(), f_, a, 0); } template
result_type operator()(A1 & a1, A2 & a2, A3 & a3) const { list3
a(a1, a2, a3); BOOST_BIND_RETURN l_(type
(), f_, a, 0); } #if !defined(BOOST_NO_FUNCTION_TEMPLATE_ORDERING) \ && !BOOST_WORKAROUND(__EDG_VERSION__, <= 238) template
result_type operator()(A1 const & a1, A2 const & a2, A3 const & a3) { list3
a(a1, a2, a3); BOOST_BIND_RETURN l_(type
(), f_, a, 0); } template
result_type operator()(A1 const & a1, A2 const & a2, A3 const & a3) const { list3
a(a1, a2, a3); BOOST_BIND_RETURN l_(type
(), f_, a, 0); } #endif template
result_type operator()(A1 & a1, A2 & a2, A3 & a3, A4 & a4) { list4
a(a1, a2, a3, a4); BOOST_BIND_RETURN l_(type
(), f_, a, 0); } template
result_type operator()(A1 & a1, A2 & a2, A3 & a3, A4 & a4) const { list4
a(a1, a2, a3, a4); BOOST_BIND_RETURN l_(type
(), f_, a, 0); } #if !defined(BOOST_NO_FUNCTION_TEMPLATE_ORDERING) \ && !BOOST_WORKAROUND(__EDG_VERSION__, <= 238) template
result_type operator()(A1 const & a1, A2 const & a2, A3 const & a3, A4 const & a4) { list4
a(a1, a2, a3, a4); BOOST_BIND_RETURN l_(type
(), f_, a, 0); } template
result_type operator()(A1 const & a1, A2 const & a2, A3 const & a3, A4 const & a4) const { list4
a(a1, a2, a3, a4); BOOST_BIND_RETURN l_(type
(), f_, a, 0); } #endif template
result_type operator()(A1 & a1, A2 & a2, A3 & a3, A4 & a4, A5 & a5) { list5
a(a1, a2, a3, a4, a5); BOOST_BIND_RETURN l_(type
(), f_, a, 0); } template
result_type operator()(A1 & a1, A2 & a2, A3 & a3, A4 & a4, A5 & a5) const { list5
a(a1, a2, a3, a4, a5); BOOST_BIND_RETURN l_(type
(), f_, a, 0); } #if !defined(BOOST_NO_FUNCTION_TEMPLATE_ORDERING) \ && !BOOST_WORKAROUND(__EDG_VERSION__, <= 238) template
result_type operator()(A1 const & a1, A2 const & a2, A3 const & a3, A4 const & a4, A5 const & a5) { list5
a(a1, a2, a3, a4, a5); BOOST_BIND_RETURN l_(type
(), f_, a, 0); } template
result_type operator()(A1 const & a1, A2 const & a2, A3 const & a3, A4 const & a4, A5 const & a5) const { list5
a(a1, a2, a3, a4, a5); BOOST_BIND_RETURN l_(type
(), f_, a, 0); } #endif template
result_type operator()(A1 & a1, A2 & a2, A3 & a3, A4 & a4, A5 & a5, A6 & a6) { list6
a(a1, a2, a3, a4, a5, a6); BOOST_BIND_RETURN l_(type
(), f_, a, 0); } template
result_type operator()(A1 & a1, A2 & a2, A3 & a3, A4 & a4, A5 & a5, A6 & a6) const { list6
a(a1, a2, a3, a4, a5, a6); BOOST_BIND_RETURN l_(type
(), f_, a, 0); } #if !defined(BOOST_NO_FUNCTION_TEMPLATE_ORDERING) \ && !BOOST_WORKAROUND(__EDG_VERSION__, <= 238) template
result_type operator()(A1 const & a1, A2 const & a2, A3 const & a3, A4 const & a4, A5 const & a5, A6 const & a6) { list6
a(a1, a2, a3, a4, a5, a6); BOOST_BIND_RETURN l_(type
(), f_, a, 0); } template
result_type operator()(A1 const & a1, A2 const & a2, A3 const & a3, A4 const & a4, A5 const & a5, A6 const & a6) const { list6
a(a1, a2, a3, a4, a5, a6); BOOST_BIND_RETURN l_(type
(), f_, a, 0); } #endif template
result_type operator()(A1 & a1, A2 & a2, A3 & a3, A4 & a4, A5 & a5, A6 & a6, A7 & a7) { list7
a(a1, a2, a3, a4, a5, a6, a7); BOOST_BIND_RETURN l_(type
(), f_, a, 0); } template
result_type operator()(A1 & a1, A2 & a2, A3 & a3, A4 & a4, A5 & a5, A6 & a6, A7 & a7) const { list7
a(a1, a2, a3, a4, a5, a6, a7); BOOST_BIND_RETURN l_(type
(), f_, a, 0); } #if !defined(BOOST_NO_FUNCTION_TEMPLATE_ORDERING) \ && !BOOST_WORKAROUND(__EDG_VERSION__, <= 238) template
result_type operator()(A1 const & a1, A2 const & a2, A3 const & a3, A4 const & a4, A5 const & a5, A6 const & a6, A7 const & a7) { list7
a(a1, a2, a3, a4, a5, a6, a7); BOOST_BIND_RETURN l_(type
(), f_, a, 0); } template
result_type operator()(A1 const & a1, A2 const & a2, A3 const & a3, A4 const & a4, A5 const & a5, A6 const & a6, A7 const & a7) const { list7
a(a1, a2, a3, a4, a5, a6, a7); BOOST_BIND_RETURN l_(type
(), f_, a, 0); } #endif template
result_type operator()(A1 & a1, A2 & a2, A3 & a3, A4 & a4, A5 & a5, A6 & a6, A7 & a7, A8 & a8) { list8
a(a1, a2, a3, a4, a5, a6, a7, a8); BOOST_BIND_RETURN l_(type
(), f_, a, 0); } template
result_type operator()(A1 & a1, A2 & a2, A3 & a3, A4 & a4, A5 & a5, A6 & a6, A7 & a7, A8 & a8) const { list8
a(a1, a2, a3, a4, a5, a6, a7, a8); BOOST_BIND_RETURN l_(type
(), f_, a, 0); } #if !defined(BOOST_NO_FUNCTION_TEMPLATE_ORDERING) \ && !BOOST_WORKAROUND(__EDG_VERSION__, <= 238) template
result_type operator()(A1 const & a1, A2 const & a2, A3 const & a3, A4 const & a4, A5 const & a5, A6 const & a6, A7 const & a7, A8 const & a8) { list8
a(a1, a2, a3, a4, a5, a6, a7, a8); BOOST_BIND_RETURN l_(type
(), f_, a, 0); } template
result_type operator()(A1 const & a1, A2 const & a2, A3 const & a3, A4 const & a4, A5 const & a5, A6 const & a6, A7 const & a7, A8 const & a8) const { list8
a(a1, a2, a3, a4, a5, a6, a7, a8); BOOST_BIND_RETURN l_(type
(), f_, a, 0); } #endif template
result_type operator()(A1 & a1, A2 & a2, A3 & a3, A4 & a4, A5 & a5, A6 & a6, A7 & a7, A8 & a8, A9 & a9) { list9
a(a1, a2, a3, a4, a5, a6, a7, a8, a9); BOOST_BIND_RETURN l_(type
(), f_, a, 0); } template
result_type operator()(A1 & a1, A2 & a2, A3 & a3, A4 & a4, A5 & a5, A6 & a6, A7 & a7, A8 & a8, A9 & a9) const { list9
a(a1, a2, a3, a4, a5, a6, a7, a8, a9); BOOST_BIND_RETURN l_(type
(), f_, a, 0); } #if !defined(BOOST_NO_FUNCTION_TEMPLATE_ORDERING) \ && !BOOST_WORKAROUND(__EDG_VERSION__, <= 238) template
result_type operator()(A1 const & a1, A2 const & a2, A3 const & a3, A4 const & a4, A5 const & a5, A6 const & a6, A7 const & a7, A8 const & a8, A9 const & a9) { list9
a(a1, a2, a3, a4, a5, a6, a7, a8, a9); BOOST_BIND_RETURN l_(type
(), f_, a, 0); } template
result_type operator()(A1 const & a1, A2 const & a2, A3 const & a3, A4 const & a4, A5 const & a5, A6 const & a6, A7 const & a7, A8 const & a8, A9 const & a9) const { list9
a(a1, a2, a3, a4, a5, a6, a7, a8, a9); BOOST_BIND_RETURN l_(type
(), f_, a, 0); } #endif template
result_type eval(A & a) { BOOST_BIND_RETURN l_(type
(), f_, a, 0); } template
result_type eval(A & a) const { BOOST_BIND_RETURN l_(type
(), f_, a, 0); } template
void accept(V & v) const { #if !defined( BOOST_NO_ARGUMENT_DEPENDENT_LOOKUP ) && !defined( __BORLANDC__ ) using boost::visit_each; #endif BOOST_BIND_VISIT_EACH(v, f_, 0); l_.accept(v); } bool compare(this_type const & rhs) const { return ref_compare(f_, rhs.f_, 0) && l_ == rhs.l_; } private: F f_; L l_;
bind_template.hpp
网页地址
文件地址
上一页
5/12
下一页
下载
( 14 KB )
Comments
Total ratings:
0
Average rating:
无评论
of 10
Would you like to comment?
Join now
, or
Logon
if you are already a member.