Re: [C++-sig] libboost_python-gcc43-mt.so or without "mt"?

2009-05-29 Thread Neal Becker
Werner Joergensen wrote: > > Dear list participants, > > I have installed boost including the python lib using the boostrap.sh > installation script, and now I have the following libraries under /lib > (linux system): libboost_python-gcc43-mt-1_39.a > libboost_python-gcc43-mt-1_39.so libboost_p

[C++-sig] Derived classes problem

2009-05-29 Thread hessiess
I am trying to create a python wrapper for the quad-ren graphics engine, which relies heavily on derived classes. The problem is that I cannot create derived classes in python and pass them to the C++ objects without getting the following error: Traceback (most recent call last): File "test.py",

[C++-sig] [Py++] incomplete type and forward declaration

2009-05-29 Thread Werner Joergensen
How can I process such a file classA.hpp using a code generator like http://www.language-binding.net/pyplusplus/documentation/tutorials/module_builder/generate_code.py.html? --8< classA.hpp -- class B; class A{ public: B& dontCareAboutB(){ /*return C::getB();*/ }; void doSom