$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
Subject: Re: [Boost-users] Boost StateChart and Template parameters
From: Igor R (boost.lists_at_[hidden])
Date: 2009-07-25 13:23:52
> Â Â Â class prolog
>      : public Entity   ///<-----needs argument here but compains the
> 'prolog' is NOT a template
You should either make a decision about Entity template argument here,
or make the above state (and all the FMS) a template.
[...]
> Â Â Â Â Â virtual void parse(
> Â Â Â Â Â Â Â T begin,
> Â Â Â Â Â Â Â T end
> Â Â Â Â Â ) {
> Â Â Â Â Â Â Â Â Â Â };
What is "T" here? Again, probably you meant to make all the FSM templated?