// 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) #ifndef EXCEPTION_TRANSLATOR_DWA2002810_HPP # define EXCEPTION_TRANSLATOR_DWA2002810_HPP # include # include # include # include # include namespace boost { namespace python { template void register_exception_translator(Translate translate, boost::type* = 0) { detail::register_exception_handler( boost::bind(detail::translate_exception(), _1, _2, translate) ); } }} // namespace boost::python #endif // EXCEPTION_TRANSLATOR_DWA2002810_HPP