$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
From: Jason Hise (chaos_at_[hidden])
Date: 2005-01-09 23:34:54
Jason Hise wrote:
> template < int I = 0 >
> class Important : Singleton < Important > { ... };
Just a quick self correction, I meant:
template < int I = 0 >
class Important : Singleton < Important < I > > { ... };
Having all specializations derive from a Singleton < Important < 0 > >
would have been a bad thing.