summaryrefslogtreecommitdiff
path: root/boost/python/converter/to_python_function_type.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'boost/python/converter/to_python_function_type.hpp')
-rw-r--r--boost/python/converter/to_python_function_type.hpp19
1 files changed, 19 insertions, 0 deletions
diff --git a/boost/python/converter/to_python_function_type.hpp b/boost/python/converter/to_python_function_type.hpp
new file mode 100644
index 0000000000..cccd014d68
--- /dev/null
+++ b/boost/python/converter/to_python_function_type.hpp
@@ -0,0 +1,19 @@
+// 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 TO_PYTHON_FUNCTION_TYPE_DWA200236_HPP
+# define TO_PYTHON_FUNCTION_TYPE_DWA200236_HPP
+# include <boost/python/detail/prefix.hpp>
+# include <boost/static_assert.hpp>
+
+namespace boost { namespace python { namespace converter {
+
+// The type of stored function pointers which actually do conversion
+// by-value. The void* points to the object to be converted, and
+// type-safety is preserved through runtime registration.
+typedef PyObject* (*to_python_function_t)(void const*);
+
+}}} // namespace boost::python::converter
+
+#endif // TO_PYTHON_FUNCTION_TYPE_DWA200236_HPP