$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
From: Sebastian Redl (sebastian.redl_at_[hidden])
Date: 2006-04-07 11:14:06
Vladislav Lazarenko wrote:
>   template <typename T>
>   class sealed : virtual private sealed_::sealed_impl<sealed, T>
>  
>
Interesting idea. Any particular reason why this inheritance is virtual? 
sealed_impl being a template should be rare to duplicate as a base, and 
having no data members or virtual functions, it should be irrelevant 
even if it was duplicated. On the other hand, you introduce the troubles 
that come with virtual inheritance.
Sebastian Redl