12 Jun
2014
12 Jun
'14
9:48 a.m.
Hello, What's the right way to wrap the following, when exposing this hierarchy to Python: sturct base { virtual void func1() = 0; }; struct intermediate : base { virtual void func2() = 0; }; struct derived : intermediate { void func1(); void func2(); }; Thanks.