|
Boost Users : |
Subject: [Boost-users] pure virtuals on multiple hierarchy levels
From: Igor R (boost.lists_at_[hidden])
Date: 2014-06-12 05:48:38
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.
Boost-users list run by williamkempf at hotmail.com, kalb at libertysoft.com, bjorn.karlsson at readsoft.com, gregod at cs.rpi.edu, wekempf at cox.net