Re: [C++-sig] Subclassing C++ classes in Python

2015-03-16 Thread Ernie Lee
Hi Holger, Adding checks for override and default implementation fixed the issue. - Thank you! Best, Ernie. On Mon, Mar 16, 2015 at 2:04 AM, Holger Joukl wrote: > > Hi Ernie, > > > When I tries to use class exposed as ’wrapper’ as substitute for C > > ++ original class i am getting a se

Re: [C++-sig] Subclassing C++ classes in Python

2015-03-16 Thread Holger Joukl
Hi Ernie, >   When I tries to use class exposed as ’wrapper’ as substitute for C > ++ original class i am getting a segfault error (see example below). > Is there is something wrong with a way i create a wrapper-class or > it is not intended to work as substitute for a base class? I haven't trie