Re: [C++-sig] Exceptions with pybindgen and gccxmlparser

2010-02-12 Thread Gustavo Carneiro
On Thu, Feb 11, 2010 at 6:16 PM, James Vogel wrote: > Hello -- > > Trying to use pybindgen.gccxmlparser, and running into an issue with > exception handling. > > I have a virtual class that declares > virtual int throw_error() throw (std::exception); > and a non-virtual class that extends the virt

[C++-sig] Exceptions with pybindgen and gccxmlparser

2010-02-11 Thread James Vogel
Hello -- Trying to use pybindgen.gccxmlparser, and running into an issue with exception handling. I have a virtual class that declares virtual int throw_error() throw (std::exception); and a non-virtual class that extends the virtual class and overrides throw_an_error to throw an actual error.