$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
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.