I'm preparing to use Boost.Python to expose a subset of my app's functionality to python scripting, and well, I'm really excited. But I'm also a neophyte when it comes to scripting bridges.<BR><BR>So ...
I have some code that looks like so<BR><BR>foo *f(x){<BR>if( )<BR> return wilma;<BR>return 0;<BR>}<BR>where foo is a pointer type that I am replacing with a boost ...