2
0
mirror of https://github.com/boostorg/python.git synced 2026-01-24 06:02:14 +00:00

This commit was manufactured by cvs2svn to create branch 'RC_1_30_0'.

[SVN r17778]
This commit is contained in:
nobody
2003-03-08 03:53:20 +00:00
parent a870ce20fc
commit a15f7d5bf3

View File

@@ -0,0 +1,47 @@
// Copyright David Abrahams 2003. Permission to copy, use,
// modify, sell and distribute this software is granted provided this
// copyright notice appears in all copies. This software is provided
// "as is" without express or implied warranty, and with no claim as
// to its suitability for any purpose.
#ifndef RAW_FUNCTION_DWA200336_HPP
# define RAW_FUNCTION_DWA200336_HPP
# include <boost/python/tuple.hpp>
# include <boost/python/dict.hpp>
# include <boost/python/object/py_function.hpp>
# include <cstddef>
namespace boost { namespace python {
namespace detail
{
template <class F>
struct raw_dispatcher
{
raw_dispatcher(F f) : f(f) {}
PyObject* operator()(PyObject* args, PyObject* keywords)
{
return incref(
object(
f(tuple(borrowed_reference(args)), dict(borrowed_reference(keywords)))
).ptr()
);
}
private:
F f;
};
object BOOST_PYTHON_DECL make_raw_function(objects::py_function, std::size_t min_args);
}
template <class F>
object raw_function(F f, std::size_t min_args = 0)
{
return detail::make_raw_function(detail::raw_dispatcher<F>(f), min_args);
}
}} // namespace boost::python
#endif // RAW_FUNCTION_DWA200336_HPP