
7 Apr
2006
7 Apr
'06
3:14 p.m.
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