1 Star 1 Fork 150

Snow/proj

forked from cutself/proj 
加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
other.hpp 947 Bytes
一键复制 编辑 原始数据 按行查看 历史
cutself 提交于 2017-08-31 02:55 +08:00 . add cpp
#ifndef OTHER_DWA20020601_HPP
# define OTHER_DWA20020601_HPP
# include <boost/python/detail/prefix.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)
# pragma once
# include <boost/config.hpp>
namespace boost { namespace python {
template<class T> struct other
{
typedef T type;
};
namespace detail
{
template<typename T>
class is_other
{
public:
BOOST_STATIC_CONSTANT(bool, value = false);
};
template<typename T>
class is_other<other<T> >
{
public:
BOOST_STATIC_CONSTANT(bool, value = true);
};
template<typename T>
class unwrap_other
{
public:
typedef T type;
};
template<typename T>
class unwrap_other<other<T> >
{
public:
typedef T type;
};
}
}} // namespace boost::python
#endif // #ifndef OTHER_DWA20020601_HPP
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/phpcms/proj.git
git@gitee.com:phpcms/proj.git
phpcms
proj
proj
master

搜索帮助