On Fri, 14 Jun 2013 12:57:48 +0100, Neal Becker
wrote:
I have a class that has a member
something like this:
class A {
boost::shared_ptr b;
};
boost::shared_ptr get_b (A const& ...) {
return A.b;
}
where class B is already exposed to python in a different module.
I think this depe
I have a class that has a member
something like this:
class A {
boost::shared_ptr b;
};
boost::shared_ptr get_b (A const& ...) {
return A.b;
}
where class B is already exposed to python in a different module.
I tried to provide access to the internal member A.b:
class_ ...
.add_proper