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
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",
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