I have a C++ class, say B, that is publicly derived from another class, A.
The B class is swigged and made accessible in Python. This works great, and all public functions defined in class B are readily available in Python without almost any work.
However, when creating a B object in Python the public functions that are defined in class A seem not to be exposed, available automatically.
Question is, how do one get access to functions up a C++ class hierarchy for a swigged Python object?