$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
From: Juraj IvanÄiÄ (juraj.ivancic_at_[hidden])
Date: 2008-07-21 10:01:32
Tony Turner wrote:
> template< typename I >
> struct Start : public sc::state< Start<I>, Inst<I> > {
> Start<I>(my_context ctx ) : my_base( ctx ) {}
> };
try this:
template< typename I >
struct Start : public sc::state< Start<I>, Inst<I> > {
Start<I>( typename sc::state< Start<I>, Inst<I> >::my_context ctx )
: my_base( ctx ) {}
};
HTH
Juraj