/usr/include/boost/python
Edit: /usr/include/boost/python/other.hpp (901B)
#ifndef BOOST_PYTHON_OTHER_HPP
# define BOOST_PYTHON_OTHER_HPP
# include
// 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)
# include
namespace boost { namespace python {
template struct other
{
typedef T type;
};
namespace detail
{
template
class is_other
{
public:
BOOST_STATIC_CONSTANT(bool, value = false);
};
template
class is_other >
{
public:
BOOST_STATIC_CONSTANT(bool, value = true);
};
template
class unwrap_other
{
public:
typedef T type;
};
template
class unwrap_other >
{
public:
typedef T type;
};
}
}} // namespace boost::python
#endif