#ifndef OTHER_DWA20020601_HPP # define OTHER_DWA20020601_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) # pragma once # 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 // #ifndef OTHER_DWA20020601_HPP