$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
Subject: Re: [boost] [Serialization] virtual function and virtual inheritance
From: fab (fabien.castan.dev_at_[hidden])
Date: 2010-01-31 14:49:15
> namespace boost{
> template<>
> struct is_virtual_base_of<myderived, mybase>: public mpl::true_ {};
> }
Thanks, it works fine.
In the correct order :
namespace boost{
template<>
struct is_virtual_base_of<mybase, myderived>: public mpl::true_ {};
}