$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
Subject: Re: [Boost-users] [state-chart] Problem compiling a statemachine with "class" instead of "struct"
From: Rudolf Leitgeb (r.leitgeb_at_[hidden])
Date: 2009-02-17 10:05:51
Thanks, that solved the problem! We did put the public inheritance
into the Active declaration but forgot the other state machine :(
Cheers,
Rudi
Am 17.02.2009 um 15:45 schrieb Igor R:
> What happens if you change:
> class PRX5StateMachine : boost::statechart::state_machine<
> PRX5StateMachine, Active > {};
> To:
> class PRX5StateMachine : public boost::statechart::state_machine<
> PRX5StateMachine, Active > {};