⇤ ← Revision 1 as of 2002-11-20 19:28:20
Size: 493
Comment:
|
Size: 1444
Comment:
|
Deletions are marked like this. | Additions are marked like this. |
Line 17: | Line 17: |
==== at module creation time ==== | |
Line 27: | Line 28: |
==== at run-time ==== Use a function: {{{ template <class T> void set(const std::string& name, const T& value) { interpreter()->mainmodule()[name] = value; } }}} |
|
Line 28: | Line 37: |
=== mutable C++ object === Perhaps you'd like the resulting Python object to contain a raw pointer to the argument? In that case, the caveat is that if the lifetime of the C++ object ends before that of the Python object, that pointer will dangle and using the Python object may cause a crash. There is a way to do that, but it's more convoluted than it should be: {{{ template <class T> T& identity(T& x) { return x; } template <class T> object get_object_reference(T& x) { // build a function object around identity object f = make_function( &identity<T>, return_value_policy<reference_existing_object>()); // and call return f(x); } }}} |
How to expose...
static class data members
object x_class = class_<X>("X") .def( ... ) ... ; x_class.attr("fu") = X::fu; x_class.attr("bar") = X::bar; ...
module level objects
at module creation time
First, create those objects like
object class_X = class_<X>("X"); object x = class_X();
Second, expose them:
scope().attr("x") = x; // injects x into current scope
By default current scope is module.
at run-time
Use a function:
template <class T> void set(const std::string& name, const T& value) { interpreter()->mainmodule()[name] = value; }
mutable C++ object
Perhaps you'd like the resulting Python object to contain a raw pointer to the argument? In that case, the caveat is that if the lifetime of the C++ object ends before that of the Python object, that pointer will dangle and using the Python object may cause a crash.
There is a way to do that, but it's more convoluted than it should be:
template <class T> T& identity(T& x) { return x; } template <class T> object get_object_reference(T& x) { // build a function object around identity object f = make_function( &identity<T>, return_value_policy<reference_existing_object>()); // and call return f(x); }