
10 Mar
2006
10 Mar
'06
8:49 a.m.
Oliver.Kowalke@infineon.com schrieb:
namespace sc = boost::statechart;
template< typename S > struct proto;
template< typename S > struct sm : public sc::state_machine< sm< S >, proto< S > {};
template< typename S > struct inactive;
template< typename S > struct proto : public sc::simple_state< proto< S >, sm< S >, inactive< S > {};
template< typename S > struct inactive : public sc::simple_state< inactive< S >, proto< S > {};
FYI in your examples you're missing a '>' everywhere. :) (I don't think that it is the real problem, I only want to mention you about this ;) ) BR Vinzenz