Re: [C++-sig] Issue Overriding C++ virtual methods in boost python for use in other C++ functions
Hi Liam, On 08.07.2016 15:58, Liam Herron wrote: > > ## > > # THIS DOESN'T WORK > > ## > > > > class MyPySmoothFunction(PyWrapSmoothFunction): > >def __init__(self): > > pass > You need to
[C++-sig] Issue Overriding C++ virtual methods in boost python for use in other C++ functions
I followed the test examples that I found on the web, and I am able to replicate the examples. My issue occurs when I: 1) Write a C++ base class 2) Wrap this C++ base class in C++ 3) Inherit from this wrapped C++ class in python 4) Then try to use this python inherited cla