x
Yes
No
Do you want to visit DriveHQ English website?
首页
产品服务
价格
免费试用
下载客户端
关于我们
云文件服务
|
云备份服务
|
FTP服务
|
企业邮箱服务
|
网站托管
|
客户端软件
云文件服务
云备份服务
FTP服务
企业级邮箱服务
网站托管
客户端软件
tuple.hpp - Hosted on DriveHQ Cloud IT Platform
返回上层目录
上传
下载
共享
发布
新建文件夹
新建文件
复制
剪切
删除
粘贴
评论
升级服务
路径: \\game3dprogramming\materials\GameFactory\GameFactoryDemo\references\boost_1_35_0\boost\tuple\tuple.hpp
旋转
特效
属性
历史版本
// tuple.hpp - Boost Tuple Library -------------------------------------- // Copyright (C) 1999, 2000 Jaakko J�rvi (jaakko.jarvi@cs.utu.fi) // // 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) // For more information, see http://www.boost.org // ----------------------------------------------------------------- #ifndef BOOST_TUPLE_HPP #define BOOST_TUPLE_HPP #if defined(__sgi) && defined(_COMPILER_VERSION) && _COMPILER_VERSION <= 730 // Work around a compiler bug. // boost::python::tuple has to be seen by the compiler before the // boost::tuple class template. namespace boost { namespace python { class tuple; }} #endif #include "boost/config.hpp" #include "boost/static_assert.hpp" #if defined(BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION) // The MSVC version #include "boost/tuple/detail/tuple_basic_no_partial_spec.hpp" #else // other compilers #include "boost/ref.hpp" #include "boost/tuple/detail/tuple_basic.hpp" #endif // BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION namespace boost { using tuples::tuple; using tuples::make_tuple; using tuples::tie; #if !defined(BOOST_NO_USING_TEMPLATE) using tuples::get; #elif !defined(BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION) // // The "using tuples::get" statement causes the // Borland compiler to ICE, use forwarding // functions instead: // template
inline typename tuples::access_traits< typename tuples::element
>::type >::non_const_type get(tuples::cons
& c) { return tuples::get
(c); } // get function for const cons-lists, returns a const reference to // the element. If the element is a reference, returns the reference // as such (that is, can return a non-const reference) template
inline typename tuples::access_traits< typename tuples::element
>::type >::const_type get(const tuples::cons
& c) { return tuples::get
(c); } #else // BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION // // MSVC, using declarations don't mix with templates well, // so use forwarding functions instead: // template
typename tuples::detail::element_ref
>::RET get(tuples::cons& t, tuples::detail::workaround_holder
* = 0) { return tuples::detail::get_class
::get(t); } template
typename tuples::detail::element_const_ref
>::RET get(const tuples::cons& t, tuples::detail::workaround_holder
* = 0) { return tuples::detail::get_class
::get(t); } #endif // BOOST_NO_USING_TEMPLATE } // end namespace boost #endif // BOOST_TUPLE_HPP
tuple.hpp
网页地址
文件地址
上一页 1/3
下一页
下载
( 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.