/Src/Dependencies/Boost/boost/msm/front/euml/container.hpp
http://hadesmem.googlecode.com/ · C++ Header · 4068 lines · 3829 code · 209 blank · 30 comment · 0 complexity · 928ae93525be5a40a884f3c64c405476 MD5 · raw file
Large files are truncated click here to view the full file
- // Copyright 2008 Christophe Henry
- // henry UNDERSCORE christophe AT hotmail DOT com
- // This is an extended version of the state machine available in the boost::mpl library
- // Distributed under the same license as the original.
- // Copyright for the original version:
- // Copyright 2005 David Abrahams and Aleksey Gurtovoy. Distributed
- // under the Boost Software License, Version 1.0. (See accompanying
- // file LICENSE_1_0.txt or copy at
- // http://www.boost.org/LICENSE_1_0.txt)
- #ifndef BOOST_MSM_FRONT_EUML_CONTAINER_H
- #define BOOST_MSM_FRONT_EUML_CONTAINER_H
- #include <utility>
- #include <boost/msm/front/euml/common.hpp>
- #include <boost/utility/enable_if.hpp>
- #include <boost/mpl/has_key.hpp>
- #include <boost/mpl/set.hpp>
- #include <boost/mpl/not.hpp>
- #include <boost/msm/front/euml/operator.hpp>
- #include <boost/type_traits.hpp>
- BOOST_MPL_HAS_XXX_TRAIT_DEF(iterator_category)
- namespace boost { namespace msm { namespace front { namespace euml
- {
- template <class T>
- struct Front_ : euml_action<Front_<T> >
- {
- template <class Event,class FSM,class STATE >
- struct state_action_result
- {
- typedef typename get_reference<
- typename ::boost::remove_reference<
- typename get_result_type2<T,Event,FSM,STATE>::type>::type>::type type;
- };
- template <class EVT,class FSM,class SourceState,class TargetState>
- struct transition_action_result
- {
- typedef typename get_reference<
- typename ::boost::remove_reference<
- typename get_result_type<T,EVT,FSM,SourceState,TargetState>::type>::type>::type type;
- };
- typedef ::boost::mpl::set<state_action_tag,action_tag> tag_type;
- template <class EVT,class FSM,class SourceState,class TargetState>
- typename ::boost::enable_if<
- typename ::boost::mpl::has_key<
- typename T::tag_type,action_tag>::type,
- typename transition_action_result<EVT,FSM,SourceState,TargetState>::type >::type
- operator()(EVT const& evt, FSM& fsm,SourceState& src,TargetState& tgt)const
- {
- return (T()(evt,fsm,src,tgt)).front();
- }
- template <class Event,class FSM,class STATE>
- typename ::boost::enable_if<
- typename ::boost::mpl::has_key<
- typename T::tag_type,state_action_tag>::type,
- typename state_action_result<Event,FSM,STATE>::type >::type
- operator()(Event const& evt,FSM& fsm,STATE& state )const
- {
- return (T()(evt,fsm,state)).front();
- }
- };
- struct front_tag {};
- struct Front_Helper: proto::extends< proto::terminal<front_tag>::type, Front_Helper, sm_domain>
- {
- Front_Helper(){}
- template <class Arg1,class Arg2,class Arg3,class Arg4,class Arg5
- #ifdef BOOST_MSVC
- ,class Arg6
- #endif
- >
- struct In
- {
- typedef Front_<Arg1> type;
- };
- };
- Front_Helper const front_;
- template <class T>
- struct Back_ : euml_action<Back_<T> >
- {
- template <class Event,class FSM,class STATE >
- struct state_action_result
- {
- typedef typename get_reference<
- typename ::boost::remove_reference<
- typename get_result_type2<T,Event,FSM,STATE>::type>::type>::type type;
- };
- template <class EVT,class FSM,class SourceState,class TargetState>
- struct transition_action_result
- {
- typedef typename get_reference<
- typename ::boost::remove_reference<
- typename get_result_type<T,EVT,FSM,SourceState,TargetState>::type>::type>::type type;
- };
- typedef ::boost::mpl::set<state_action_tag,action_tag> tag_type;
- template <class EVT,class FSM,class SourceState,class TargetState>
- typename ::boost::enable_if<
- typename ::boost::mpl::has_key<
- typename T::tag_type,action_tag>::type,
- typename transition_action_result<EVT,FSM,SourceState,TargetState>::type >::type
- operator()(EVT const& evt, FSM& fsm,SourceState& src,TargetState& tgt)const
- {
- return (T()(evt,fsm,src,tgt)).back();
- }
- template <class Event,class FSM,class STATE>
- typename ::boost::enable_if<
- typename ::boost::mpl::has_key<
- typename T::tag_type,state_action_tag>::type,
- typename state_action_result<Event,FSM,STATE>::type >::type
- operator()(Event const& evt,FSM& fsm,STATE& state )const
- {
- return (T()(evt,fsm,state)).back();
- }
- };
- struct back_tag {};
- struct Back_Helper: proto::extends< proto::terminal<back_tag>::type, Back_Helper, sm_domain>
- {
- Back_Helper(){}
- template <class Arg1,class Arg2,class Arg3,class Arg4,class Arg5
- #ifdef BOOST_MSVC
- ,class Arg6
- #endif
- >
- struct In
- {
- typedef Back_<Arg1> type;
- };
- };
- Back_Helper const back_;
- template <class T>
- struct Begin_ : euml_action<Begin_<T> >
- {
- template <class Event,class FSM,class STATE >
- struct state_action_result
- {
- typedef typename get_iterator<
- typename ::boost::remove_reference<
- typename get_result_type2<T,Event,FSM,STATE>::type>::type>::type type;
- };
- template <class EVT,class FSM,class SourceState,class TargetState>
- struct transition_action_result
- {
- typedef typename get_iterator<
- typename ::boost::remove_reference<
- typename get_result_type<T,EVT,FSM,SourceState,TargetState>::type>::type>::type type;
- };
- typedef ::boost::mpl::set<state_action_tag,action_tag> tag_type;
- template <class EVT,class FSM,class SourceState,class TargetState>
- typename ::boost::enable_if<
- typename ::boost::mpl::has_key<
- typename T::tag_type,action_tag>::type,
- typename transition_action_result<EVT,FSM,SourceState,TargetState>::type >::type
- operator()(EVT const& evt, FSM& fsm,SourceState& src,TargetState& tgt)const
- {
- return (T()(evt,fsm,src,tgt)).begin();
- }
- template <class Event,class FSM,class STATE>
- typename ::boost::enable_if<
- typename ::boost::mpl::has_key<
- typename T::tag_type,state_action_tag>::type,
- typename state_action_result<Event,FSM,STATE>::type >::type
- operator()(Event const& evt,FSM& fsm,STATE& state )const
- {
- return (T()(evt,fsm,state)).begin();
- }
- };
- struct begin_tag {};
- struct Begin_Helper: proto::extends< proto::terminal<begin_tag>::type, Begin_Helper, sm_domain>
- {
- Begin_Helper(){}
- template <class Arg1,class Arg2,class Arg3,class Arg4,class Arg5
- #ifdef BOOST_MSVC
- ,class Arg6
- #endif
- >
- struct In
- {
- typedef Begin_<Arg1> type;
- };
- };
- Begin_Helper const begin_;
- template <class T>
- struct End_ : euml_action<End_<T> >
- {
- template <class Event,class FSM,class STATE >
- struct state_action_result
- {
- typedef typename get_iterator<
- typename ::boost::remove_reference<
- typename get_result_type2<T,Event,FSM,STATE>::type>::type>::type type;
- };
- template <class EVT,class FSM,class SourceState,class TargetState>
- struct transition_action_result
- {
- typedef typename get_iterator<
- typename ::boost::remove_reference<
- typename get_result_type<T,EVT,FSM,SourceState,TargetState>::type>::type>::type type;
- };
- typedef ::boost::mpl::set<state_action_tag,action_tag> tag_type;
- template <class EVT,class FSM,class SourceState,class TargetState>
- typename ::boost::enable_if<
- typename ::boost::mpl::has_key<
- typename T::tag_type,action_tag>::type,
- typename transition_action_result<EVT,FSM,SourceState,TargetState>::type >::type
- operator()(EVT const& evt, FSM& fsm,SourceState& src,TargetState& tgt)const
- {
- return (T()(evt,fsm,src,tgt)).end();
- }
- template <class Event,class FSM,class STATE>
- typename ::boost::enable_if<
- typename ::boost::mpl::has_key<
- typename T::tag_type,state_action_tag>::type,
- typename state_action_result<Event,FSM,STATE>::type >::type
- operator()(Event const& evt,FSM& fsm,STATE& state )const
- {
- return (T()(evt,fsm,state)).end();
- }
- };
- struct end_tag {};
- struct End_Helper: proto::extends< proto::terminal<end_tag>::type, End_Helper, sm_domain>
- {
- End_Helper(){}
- template <class Arg1,class Arg2,class Arg3,class Arg4,class Arg5
- #ifdef BOOST_MSVC
- ,class Arg6
- #endif
- >
- struct In
- {
- typedef End_<Arg1> type;
- };
- };
- End_Helper const end_;
- template <class T>
- struct RBegin_ : euml_action<RBegin_<T> >
- {
- template <class Event,class FSM,class STATE >
- struct state_action_result
- {
- typedef typename get_reverse_iterator<
- typename ::boost::remove_reference<
- typename get_result_type2<T,Event,FSM,STATE>::type>::type>::type type;
- };
- template <class EVT,class FSM,class SourceState,class TargetState>
- struct transition_action_result
- {
- typedef typename get_reverse_iterator<
- typename ::boost::remove_reference<
- typename get_result_type<T,EVT,FSM,SourceState,TargetState>::type>::type>::type type;
- };
- typedef ::boost::mpl::set<state_action_tag,action_tag> tag_type;
- template <class EVT,class FSM,class SourceState,class TargetState>
- typename ::boost::enable_if<
- typename ::boost::mpl::has_key<
- typename T::tag_type,action_tag>::type,
- typename transition_action_result<EVT,FSM,SourceState,TargetState>::type >::type
- operator()(EVT const& evt, FSM& fsm,SourceState& src,TargetState& tgt)const
- {
- return (T()(evt,fsm,src,tgt)).rbegin();
- }
- template <class Event,class FSM,class STATE>
- typename ::boost::enable_if<
- typename ::boost::mpl::has_key<
- typename T::tag_type,state_action_tag>::type,
- typename state_action_result<Event,FSM,STATE>::type >::type
- operator()(Event const& evt,FSM& fsm,STATE& state )const
- {
- return (T()(evt,fsm,state)).rbegin();
- }
- };
- struct rbegin_tag {};
- struct RBegin_Helper: proto::extends< proto::terminal<rbegin_tag>::type, RBegin_Helper, sm_domain>
- {
- RBegin_Helper(){}
- template <class Arg1,class Arg2,class Arg3,class Arg4,class Arg5
- #ifdef BOOST_MSVC
- ,class Arg6
- #endif
- >
- struct In
- {
- typedef RBegin_<Arg1> type;
- };
- };
- RBegin_Helper const rbegin_;
- template <class T>
- struct REnd_ : euml_action<REnd_<T> >
- {
- template <class Event,class FSM,class STATE >
- struct state_action_result
- {
- typedef typename get_reverse_iterator<
- typename ::boost::remove_reference<
- typename get_result_type2<T,Event,FSM,STATE>::type>::type>::type type;
- };
- template <class EVT,class FSM,class SourceState,class TargetState>
- struct transition_action_result
- {
- typedef typename get_reverse_iterator<
- typename ::boost::remove_reference<
- typename get_result_type<T,EVT,FSM,SourceState,TargetState>::type>::type>::type type;
- };
- typedef ::boost::mpl::set<state_action_tag,action_tag> tag_type;
- template <class EVT,class FSM,class SourceState,class TargetState>
- typename ::boost::enable_if<
- typename ::boost::mpl::has_key<
- typename T::tag_type,action_tag>::type,
- typename transition_action_result<EVT,FSM,SourceState,TargetState>::type >::type
- operator()(EVT const& evt, FSM& fsm,SourceState& src,TargetState& tgt)const
- {
- return (T()(evt,fsm,src,tgt)).rend();
- }
- template <class Event,class FSM,class STATE>
- typename ::boost::enable_if<
- typename ::boost::mpl::has_key<
- typename T::tag_type,state_action_tag>::type,
- typename state_action_result<Event,FSM,STATE>::type >::type
- operator()(Event const& evt,FSM& fsm,STATE& state )const
- {
- return (T()(evt,fsm,state)).rend();
- }
- };
- struct rend_tag {};
- struct REnd_Helper: proto::extends< proto::terminal<rend_tag>::type, REnd_Helper, sm_domain>
- {
- REnd_Helper(){}
- template <class Arg1,class Arg2,class Arg3,class Arg4,class Arg5
- #ifdef BOOST_MSVC
- ,class Arg6
- #endif
- >
- struct In
- {
- typedef REnd_<Arg1> type;
- };
- };
- REnd_Helper const rend_;
- template <class Container,class Element>
- struct Push_Back_ : euml_action<Push_Back_<Container,Element> >
- {
- template <class Event,class FSM,class STATE >
- struct state_action_result
- {
- typedef void type;
- };
- template <class EVT,class FSM,class SourceState,class TargetState>
- struct transition_action_result
- {
- typedef void type;
- };
- typedef ::boost::mpl::set<state_action_tag,action_tag> tag_type;
- template <class EVT,class FSM,class SourceState,class TargetState>
- void operator()(EVT const& evt, FSM& fsm,SourceState& src,TargetState& tgt)const
- {
- (Container()(evt,fsm,src,tgt)).push_back(Element()(evt,fsm,src,tgt));
- }
- template <class Event,class FSM,class STATE>
- void operator()(Event const& evt,FSM& fsm,STATE& state )const
- {
- (Container()(evt,fsm,state)).push_back(Element()(evt,fsm,state));
- }
- };
- struct push_back_tag {};
- struct Push_Back_Helper: proto::extends< proto::terminal<push_back_tag>::type, Push_Back_Helper, sm_domain>
- {
- Push_Back_Helper(){}
- template <class Arg1,class Arg2,class Arg3,class Arg4,class Arg5
- #ifdef BOOST_MSVC
- ,class Arg6
- #endif
- >
- struct In
- {
- typedef Push_Back_<Arg1,Arg2> type;
- };
- };
- Push_Back_Helper const push_back_;
- template <class Container>
- struct Pop_Back_ : euml_action<Pop_Back_<Container> >
- {
- template <class Event,class FSM,class STATE >
- struct state_action_result
- {
- typedef void type;
- };
- template <class EVT,class FSM,class SourceState,class TargetState>
- struct transition_action_result
- {
- typedef void type;
- };
- typedef ::boost::mpl::set<state_action_tag,action_tag> tag_type;
- template <class EVT,class FSM,class SourceState,class TargetState>
- void operator()(EVT const& evt, FSM& fsm,SourceState& src,TargetState& tgt)const
- {
- (Container()(evt,fsm,src,tgt)).pop_back();
- }
- template <class Event,class FSM,class STATE>
- void operator()(Event const& evt,FSM& fsm,STATE& state )const
- {
- (Container()(evt,fsm,state)).pop_back();
- }
- };
- struct pop_back_tag {};
- struct Pop_Back_Helper: proto::extends< proto::terminal<pop_back_tag>::type, Pop_Back_Helper, sm_domain>
- {
- Pop_Back_Helper(){}
- template <class Arg1,class Arg2,class Arg3,class Arg4,class Arg5
- #ifdef BOOST_MSVC
- ,class Arg6
- #endif
- >
- struct In
- {
- typedef Pop_Back_<Arg1> type;
- };
- };
- Pop_Back_Helper const pop_back_;
- template <class Container,class Element>
- struct Push_Front_ : euml_action<Push_Front_<Container,Element> >
- {
- template <class Event,class FSM,class STATE >
- struct state_action_result
- {
- typedef void type;
- };
- template <class EVT,class FSM,class SourceState,class TargetState>
- struct transition_action_result
- {
- typedef void type;
- };
- typedef ::boost::mpl::set<state_action_tag,action_tag> tag_type;
- template <class EVT,class FSM,class SourceState,class TargetState>
- void operator()(EVT const& evt, FSM& fsm,SourceState& src,TargetState& tgt)const
- {
- (Container()(evt,fsm,src,tgt)).push_front(Element()(evt,fsm,src,tgt));
- }
- template <class Event,class FSM,class STATE>
- void operator()(Event const& evt,FSM& fsm,STATE& state )const
- {
- (Container()(evt,fsm,state)).push_front(Element()(evt,fsm,state));
- }
- };
- struct push_front_tag {};
- struct Push_Front_Helper: proto::extends< proto::terminal<push_front_tag>::type, Push_Front_Helper, sm_domain>
- {
- Push_Front_Helper(){}
- template <class Arg1,class Arg2,class Arg3,class Arg4,class Arg5
- #ifdef BOOST_MSVC
- ,class Arg6
- #endif
- >
- struct In
- {
- typedef Push_Front_<Arg1,Arg2> type;
- };
- };
- Push_Front_Helper const push_front_;
- template <class Container>
- struct Pop_Front_ : euml_action<Pop_Front_<Container> >
- {
- template <class Event,class FSM,class STATE >
- struct state_action_result
- {
- typedef void type;
- };
- template <class EVT,class FSM,class SourceState,class TargetState>
- struct transition_action_result
- {
- typedef void type;
- };
- typedef ::boost::mpl::set<state_action_tag,action_tag> tag_type;
- template <class EVT,class FSM,class SourceState,class TargetState>
- void operator()(EVT const& evt, FSM& fsm,SourceState& src,TargetState& tgt)const
- {
- (Container()(evt,fsm,src,tgt)).pop_front();
- }
- template <class Event,class FSM,class STATE>
- void operator()(Event const& evt,FSM& fsm,STATE& state )const
- {
- (Container()(evt,fsm,state)).pop_front();
- }
- };
- struct pop_front_tag {};
- struct Pop_Front_Helper: proto::extends< proto::terminal<pop_front_tag>::type, Pop_Front_Helper, sm_domain>
- {
- Pop_Front_Helper(){}
- template <class Arg1,class Arg2,class Arg3,class Arg4,class Arg5
- #ifdef BOOST_MSVC
- ,class Arg6
- #endif
- >
- struct In
- {
- typedef Pop_Front_<Arg1> type;
- };
- };
- Pop_Front_Helper const pop_front_;
- template <class Container>
- struct Clear_ : euml_action<Clear_<Container> >
- {
- template <class Event,class FSM,class STATE >
- struct state_action_result
- {
- typedef void type;
- };
- template <class EVT,class FSM,class SourceState,class TargetState>
- struct transition_action_result
- {
- typedef void type;
- };
- typedef ::boost::mpl::set<state_action_tag,action_tag> tag_type;
- template <class EVT,class FSM,class SourceState,class TargetState>
- void operator()(EVT const& evt, FSM& fsm,SourceState& src,TargetState& tgt)const
- {
- (Container()(evt,fsm,src,tgt)).clear();
- }
- template <class Event,class FSM,class STATE>
- void operator()(Event const& evt,FSM& fsm,STATE& state )const
- {
- (Container()(evt,fsm,state)).clear();
- }
- };
- struct clear_tag {};
- struct Clear_Helper: proto::extends< proto::terminal<clear_tag>::type, Clear_Helper, sm_domain>
- {
- Clear_Helper(){}
- template <class Arg1,class Arg2,class Arg3,class Arg4,class Arg5
- #ifdef BOOST_MSVC
- ,class Arg6
- #endif
- >
- struct In
- {
- typedef Clear_<Arg1> type;
- };
- };
- Clear_Helper const clear_;
- template <class Container>
- struct ListReverse_ : euml_action<ListReverse_<Container> >
- {
- template <class Event,class FSM,class STATE >
- struct state_action_result
- {
- typedef void type;
- };
- template <class EVT,class FSM,class SourceState,class TargetState>
- struct transition_action_result
- {
- typedef void type;
- };
- typedef ::boost::mpl::set<state_action_tag,action_tag> tag_type;
- template <class EVT,class FSM,class SourceState,class TargetState>
- void operator()(EVT const& evt, FSM& fsm,SourceState& src,TargetState& tgt)const
- {
- (Container()(evt,fsm,src,tgt)).reverse();
- }
- template <class Event,class FSM,class STATE>
- void operator()(Event const& evt,FSM& fsm,STATE& state )const
- {
- (Container()(evt,fsm,state)).reverse();
- }
- };
- struct list_reverse_tag {};
- struct ListReverse_Helper: proto::extends< proto::terminal<list_reverse_tag>::type, ListReverse_Helper, sm_domain>
- {
- ListReverse_Helper(){}
- template <class Arg1,class Arg2,class Arg3,class Arg4,class Arg5
- #ifdef BOOST_MSVC
- ,class Arg6
- #endif
- >
- struct In
- {
- typedef ListReverse_<Arg1> type;
- };
- };
- ListReverse_Helper const list_reverse_;
- template <class Container, class Predicate, class Enable=void>
- struct ListUnique_ : euml_action<ListUnique_<Container,Predicate,Enable> >
- {
- template <class Event,class FSM,class STATE >
- struct state_action_result
- {
- typedef void type;
- };
- template <class EVT,class FSM,class SourceState,class TargetState>
- struct transition_action_result
- {
- typedef void type;
- };
- typedef ::boost::mpl::set<state_action_tag,action_tag> tag_type;
- template <class EVT,class FSM,class SourceState,class TargetState>
- void operator()(EVT const& evt, FSM& fsm,SourceState& src,TargetState& tgt)const
- {
- (Container()(evt,fsm,src,tgt)).unique();
- }
- template <class Event,class FSM,class STATE>
- void operator()(Event const& evt,FSM& fsm,STATE& state )const
- {
- (Container()(evt,fsm,state)).unique();
- }
- };
- template <class Container, class Predicate >
- struct ListUnique_<Container,Predicate,
- typename ::boost::disable_if<typename ::boost::is_same<Predicate,void>::type >::type>
- : euml_action<ListUnique_<Container,Predicate> >
- {
- template <class Event,class FSM,class STATE >
- struct state_action_result
- {
- typedef void type;
- };
- template <class EVT,class FSM,class SourceState,class TargetState>
- struct transition_action_result
- {
- typedef void type;
- };
- typedef ::boost::mpl::set<state_action_tag,action_tag> tag_type;
- template <class EVT,class FSM,class SourceState,class TargetState>
- void operator()(EVT const& evt, FSM& fsm,SourceState& src,TargetState& tgt)const
- {
- (Container()(evt,fsm,src,tgt)).unique(Predicate()(evt,fsm,src,tgt));
- }
- template <class Event,class FSM,class STATE>
- void operator()(Event const& evt,FSM& fsm,STATE& state )const
- {
- (Container()(evt,fsm,state)).unique(Predicate()(evt,fsm,state));
- }
- };
- struct list_unique_tag {};
- struct ListUnique_Helper: proto::extends< proto::terminal<list_unique_tag>::type, ListUnique_Helper, sm_domain>
- {
- ListUnique_Helper(){}
- template <class Arg1,class Arg2,class Arg3,class Arg4,class Arg5
- #ifdef BOOST_MSVC
- ,class Arg6
- #endif
- >
- struct In
- {
- typedef ListUnique_<Arg1,Arg2> type;
- };
- };
- ListUnique_Helper const list_unique_;
- template <class Container, class Predicate, class Enable=void>
- struct ListSort_ : euml_action<ListSort_<Container,Predicate,Enable> >
- {
- template <class Event,class FSM,class STATE >
- struct state_action_result
- {
- typedef void type;
- };
- template <class EVT,class FSM,class SourceState,class TargetState>
- struct transition_action_result
- {
- typedef void type;
- };
- typedef ::boost::mpl::set<state_action_tag,action_tag> tag_type;
- template <class EVT,class FSM,class SourceState,class TargetState>
- void operator()(EVT const& evt, FSM& fsm,SourceState& src,TargetState& tgt)const
- {
- (Container()(evt,fsm,src,tgt)).sort();
- }
- template <class Event,class FSM,class STATE>
- void operator()(Event const& evt,FSM& fsm,STATE& state )const
- {
- (Container()(evt,fsm,state)).sort();
- }
- };
- template <class Container, class Predicate >
- struct ListSort_<Container,Predicate,
- typename ::boost::disable_if<typename ::boost::is_same<Predicate,void>::type >::type>
- : euml_action<ListSort_<Container,Predicate> >
- {
- template <class Event,class FSM,class STATE >
- struct state_action_result
- {
- typedef void type;
- };
- template <class EVT,class FSM,class SourceState,class TargetState>
- struct transition_action_result
- {
- typedef void type;
- };
- typedef ::boost::mpl::set<state_action_tag,action_tag> tag_type;
- template <class EVT,class FSM,class SourceState,class TargetState>
- void operator()(EVT const& evt, FSM& fsm,SourceState& src,TargetState& tgt)const
- {
- (Container()(evt,fsm,src,tgt)).sort(Predicate()(evt,fsm,src,tgt));
- }
- template <class Event,class FSM,class STATE>
- void operator()(Event const& evt,FSM& fsm,STATE& state )const
- {
- (Container()(evt,fsm,state)).sort(Predicate()(evt,fsm,state));
- }
- };
- struct list_sort_tag {};
- struct ListSort_Helper: proto::extends< proto::terminal<list_sort_tag>::type, ListSort_Helper, sm_domain>
- {
- ListSort_Helper(){}
- template <class Arg1,class Arg2,class Arg3,class Arg4,class Arg5
- #ifdef BOOST_MSVC
- ,class Arg6
- #endif
- >
- struct In
- {
- typedef ListSort_<Arg1,Arg2> type;
- };
- };
- ListSort_Helper const list_sort_;
- template <class Container>
- struct Capacity_ : euml_action<Capacity_<Container> >
- {
- template <class Event,class FSM,class STATE >
- struct state_action_result
- {
- typedef typename get_size_type<
- typename ::boost::remove_reference<
- typename get_result_type2<Container,Event,FSM,STATE>::type>::type>::type type;
- };
- template <class EVT,class FSM,class SourceState,class TargetState>
- struct transition_action_result
- {
- typedef typename get_size_type<
- typename ::boost::remove_reference<
- typename get_result_type<Container,EVT,FSM,SourceState,TargetState>::type>::type>::type type;
- };
- typedef ::boost::mpl::set<state_action_tag,action_tag> tag_type;
- template <class EVT,class FSM,class SourceState,class TargetState>
- typename ::boost::enable_if<
- typename ::boost::mpl::has_key<
- typename Container::tag_type,action_tag>::type,
- typename transition_action_result<EVT,FSM,SourceState,TargetState>::type >::type
- operator()(EVT const& evt, FSM& fsm,SourceState& src,TargetState& tgt)const
- {
- return (Container()(evt,fsm,src,tgt)).capacity();
- }
- template <class Event,class FSM,class STATE>
- typename ::boost::enable_if<
- typename ::boost::mpl::has_key<
- typename Container::tag_type,state_action_tag>::type,
- typename state_action_result<Event,FSM,STATE>::type >::type
- operator()(Event const& evt,FSM& fsm,STATE& state )const
- {
- return (Container()(evt,fsm,state)).capacity();
- }
- };
- struct capacity_tag {};
- struct Capacity_Helper: proto::extends< proto::terminal<capacity_tag>::type, Capacity_Helper, sm_domain>
- {
- Capacity_Helper(){}
- template <class Arg1,class Arg2,class Arg3,class Arg4,class Arg5
- #ifdef BOOST_MSVC
- ,class Arg6
- #endif
- >
- struct In
- {
- typedef Capacity_<Arg1> type;
- };
- };
- Capacity_Helper const capacity_;
- template <class Container>
- struct Size_ : euml_action<Size_<Container> >
- {
- template <class Event,class FSM,class STATE >
- struct state_action_result
- {
- typedef typename get_size_type<
- typename ::boost::remove_reference<
- typename get_result_type2<Container,Event,FSM,STATE>::type>::type>::type type;
- };
- template <class EVT,class FSM,class SourceState,class TargetState>
- struct transition_action_result
- {
- typedef typename get_size_type<
- typename ::boost::remove_reference<
- typename get_result_type<Container,EVT,FSM,SourceState,TargetState>::type>::type>::type type;
- };
- typedef ::boost::mpl::set<state_action_tag,action_tag> tag_type;
- template <class EVT,class FSM,class SourceState,class TargetState>
- typename ::boost::enable_if<
- typename ::boost::mpl::has_key<
- typename Container::tag_type,action_tag>::type,
- typename transition_action_result<EVT,FSM,SourceState,TargetState>::type >::type
- operator()(EVT const& evt, FSM& fsm,SourceState& src,TargetState& tgt)const
- {
- return (Container()(evt,fsm,src,tgt)).size();
- }
- template <class Event,class FSM,class STATE>
- typename ::boost::enable_if<
- typename ::boost::mpl::has_key<
- typename Container::tag_type,state_action_tag>::type,
- typename state_action_result<Event,FSM,STATE>::type >::type
- operator()(Event const& evt,FSM& fsm,STATE& state )const
- {
- return (Container()(evt,fsm,state)).size();
- }
- };
- struct size_tag {};
- struct Size_Helper: proto::extends< proto::terminal<size_tag>::type, Size_Helper, sm_domain>
- {
- Size_Helper(){}
- template <class Arg1,class Arg2,class Arg3,class Arg4,class Arg5
- #ifdef BOOST_MSVC
- ,class Arg6
- #endif
- >
- struct In
- {
- typedef Size_<Arg1> type;
- };
- };
- Size_Helper const size_;
- template <class Container>
- struct Max_Size_ : euml_action<Max_Size_<Container> >
- {
- template <class Event,class FSM,class STATE >
- struct state_action_result
- {
- typedef typename get_size_type<
- typename ::boost::remove_reference<
- typename get_result_type2<Container,Event,FSM,STATE>::type>::type>::type type;
- };
- template <class EVT,class FSM,class SourceState,class TargetState>
- struct transition_action_result
- {
- typedef typename get_size_type<
- typename ::boost::remove_reference<
- typename get_result_type<Container,EVT,FSM,SourceState,TargetState>::type>::type>::type type;
- };
- typedef ::boost::mpl::set<state_action_tag,action_tag> tag_type;
- template <class EVT,class FSM,class SourceState,class TargetState>
- typename ::boost::enable_if<
- typename ::boost::mpl::has_key<
- typename Container::tag_type,action_tag>::type,
- typename transition_action_result<EVT,FSM,SourceState,TargetState>::type >::type
- operator()(EVT const& evt, FSM& fsm,SourceState& src,TargetState& tgt)const
- {
- return (Container()(evt,fsm,src,tgt)).max_size();
- }
- template <class Event,class FSM,class STATE>
- typename ::boost::enable_if<
- typename ::boost::mpl::has_key<
- typename Container::tag_type,state_action_tag>::type,
- typename state_action_result<Event,FSM,STATE>::type >::type
- operator()(Event const& evt,FSM& fsm,STATE& state )const
- {
- return (Container()(evt,fsm,state)).max_size();
- }
- };
- struct max_size_tag {};
- struct Max_Size_Helper: proto::extends< proto::terminal<max_size_tag>::type, Max_Size_Helper, sm_domain>
- {
- Max_Size_Helper(){}
- template <class Arg1,class Arg2,class Arg3,class Arg4,class Arg5
- #ifdef BOOST_MSVC
- ,class Arg6
- #endif
- >
- struct In
- {
- typedef Max_Size_<Arg1> type;
- };
- };
- Max_Size_Helper const max_size_;
- template <class Container, class Value>
- struct Reserve_ : euml_action<Reserve_<Container,Value> >
- {
- template <class Event,class FSM,class STATE >
- struct state_action_result
- {
- typedef void type;
- };
- template <class EVT,class FSM,class SourceState,class TargetState>
- struct transition_action_result
- {
- typedef void type;
- };
- typedef ::boost::mpl::set<state_action_tag,action_tag> tag_type;
- template <class EVT,class FSM,class SourceState,class TargetState>
- void operator()(EVT const& evt, FSM& fsm,SourceState& src,TargetState& tgt)const
- {
- (Container()(evt,fsm,src,tgt)).reserve(Value()(evt,fsm,src,tgt));
- }
- template <class Event,class FSM,class STATE>
- void operator()(Event const& evt,FSM& fsm,STATE& state )const
- {
- (Container()(evt,fsm,state)).reserve(Value()(evt,fsm,state));
- }
- };
- struct reserve_tag {};
- struct Reserve_Helper: proto::extends< proto::terminal<reserve_tag>::type, Reserve_Helper, sm_domain>
- {
- Reserve_Helper(){}
- template <class Arg1,class Arg2,class Arg3,class Arg4,class Arg5
- #ifdef BOOST_MSVC
- ,class Arg6
- #endif
- >
- struct In
- {
- typedef Reserve_<Arg1,Arg2> type;
- };
- };
- Reserve_Helper const reserve_;
- template <class Container, class Num, class Value ,class Enable=void >
- struct Resize_ : euml_action<Resize_<Container,Num,Value> >
- {
- template <class Event,class FSM,class STATE >
- struct state_action_result
- {
- typedef void type;
- };
- template <class EVT,class FSM,class SourceState,class TargetState>
- struct transition_action_result
- {
- typedef void type;
- };
- typedef ::boost::mpl::set<state_action_tag,action_tag> tag_type;
- template <class EVT,class FSM,class SourceState,class TargetState>
- void operator()(EVT const& evt, FSM& fsm,SourceState& src,TargetState& tgt)const
- {
- (Container()(evt,fsm,src,tgt)).resize(Num()(evt,fsm,src,tgt));
- }
- template <class Event,class FSM,class STATE>
- void operator()(Event const& evt,FSM& fsm,STATE& state )const
- {
- (Container()(evt,fsm,state)).resize(Num()(evt,fsm,state));
- }
- };
- template <class Container, class Num , class Value >
- struct Resize_<Container,Num,Value,typename ::boost::disable_if<typename ::boost::is_same<Value,void>::type >::type>
- : euml_action<Resize_<Container,Num,Value> >
- {
- template <class Event,class FSM,class STATE >
- struct state_action_result
- {
- typedef void type;
- };
- template <class EVT,class FSM,class SourceState,class TargetState>
- struct transition_action_result
- {
- typedef void type;
- };
- typedef ::boost::mpl::set<state_action_tag,action_tag> tag_type;
- template <class EVT,class FSM,class SourceState,class TargetState>
- void operator()(EVT const& evt, FSM& fsm,SourceState& src,TargetState& tgt)const
- {
- (Container()(evt,fsm,src,tgt)).resize(Num()(evt,fsm,src,tgt),Value()(evt,fsm,src,tgt));
- }
- template <class Event,class FSM,class STATE>
- void operator()(Event const& evt,FSM& fsm,STATE& state )const
- {
- (Container()(evt,fsm,state)).resize(Num()(evt,fsm,state),Value()(evt,fsm,state));
- }
- };
- struct resize_tag {};
- struct Resize_Helper: proto::extends< proto::terminal<resize_tag>::type, Resize_Helper, sm_domain>
- {
- Resize_Helper(){}
- template <class Arg1,class Arg2,class Arg3,class Arg4,class Arg5
- #ifdef BOOST_MSVC
- ,class Arg6
- #endif
- >
- struct In
- {
- typedef Resize_<Arg1,Arg2,Arg3> type;
- };
- };
- Resize_Helper const resize_;
- // version for 3 parameters (sequence containers)
- template <class Container, class Param1, class Param2, class Param3 >
- struct Insert_ : euml_action<Insert_<Container,Param1,Param2,Param3> >
- {
- template <class Event,class FSM,class STATE >
- struct state_action_result
- {
- typedef void type;
- };
- template <class EVT,class FSM,class SourceState,class TargetState>
- struct transition_action_result
- {
- typedef void type;
- };
- typedef ::boost::mpl::set<state_action_tag,action_tag> tag_type;
- template <class EVT,class FSM,class SourceState,class TargetState>
- void operator()(EVT const& evt, FSM& fsm,SourceState& src,TargetState& tgt)const
- {
- (Container()(evt,fsm,src,tgt)).insert(Param1()(evt,fsm,src,tgt),Param2()(evt,fsm,src,tgt),
- Param3()(evt,fsm,src,tgt));
- }
- template <class Event,class FSM,class STATE>
- void operator()(Event const& evt,FSM& fsm,STATE& state )const
- {
- (Container()(evt,fsm,state)).insert(Param1()(evt,fsm,state),Param2()(evt,fsm,state),
- Param3()(evt,fsm,state));
- }
- };
- // version for 2 parameters
- template <class Container, class Param1, class Param2>
- struct Insert_ < Container,Param1,Param2,void>
- : euml_action<Insert_<Container,Param1,Param2,void> >
- {
- // return value will actually not be correct for set::insert(it1,it2), should be void
- // but it's ok as nobody should call an inexistent return type
- template <class Event,class FSM,class STATE >
- struct state_action_result
- {
- typedef typename get_iterator<
- typename ::boost::remove_reference<
- typename get_result_type2<Container,Event,FSM,STATE>::type>::type>::type type;
- };
- template <class EVT,class FSM,class SourceState,class TargetState>
- struct transition_action_result
- {
- typedef typename get_iterator<
- typename ::boost::remove_reference<
- typename get_result_type<Container,EVT,FSM,SourceState,TargetState>::type>::type>::type type;
- };
- typedef ::boost::mpl::set<state_action_tag,action_tag> tag_type;
- // version for transition + second param not an iterator (meaning that, Container is not an associative container)
- template <class EVT,class FSM,class SourceState,class TargetState>
- typename ::boost::enable_if<
- typename ::boost::mpl::and_<
- typename ::boost::mpl::has_key<
- typename Container::tag_type,action_tag>::type,
- typename ::boost::mpl::not_<
- typename has_iterator_category<
- typename Param2::template transition_action_result<EVT,FSM,SourceState,TargetState>::type
- >::type
- >::type
- >::type,
- typename transition_action_result<EVT,FSM,SourceState,TargetState>::type
- >::type
- operator()(EVT const& evt, FSM& fsm,SourceState& src,TargetState& tgt)const
- {
- return (Container()(evt,fsm,src,tgt)).insert(Param1()(evt,fsm,src,tgt),Param2()(evt,fsm,src,tgt));
- }
- // version for transition + second param is an iterator (meaning that, Container is an associative container)
- template <class EVT,class FSM,class SourceState,class TargetState>
- typename ::boost::enable_if<
- typename ::boost::mpl::and_<
- typename ::boost::mpl::has_key<
- typename Container::tag_type,action_tag>::type,
- typename has_iterator_category<
- typename Param2::template transition_action_result<EVT,FSM,SourceState,TargetState>::type
- >::type
- >::type,
- typename transition_action_result<EVT,FSM,SourceState,TargetState>::type
- >::type
- operator()(EVT const& evt, FSM& fsm,SourceState& src,TargetState& tgt)const
- {
- (Container()(evt,fsm,src,tgt)).insert(Param1()(evt,fsm,src,tgt),Param2()(evt,fsm,src,tgt));
- }
- // version for state action + second param not an iterator (meaning that, Container is not an associative container)
- template <class Event,class FSM,class STATE>
- typename ::boost::enable_if<
- typename ::boost::mpl::and_<
- typename ::boost::mpl::has_key<
- typename Container::tag_type,state_action_tag>::type,
- typename ::boost::mpl::not_<
- typename has_iterator_category<
- typename Param2::template state_action_result<Event,FSM,STATE>::type
- >::type
- >::type
- >::type,
- typename state_action_result<Event,FSM,STATE>::type
- >::type
- operator()(Event const& evt,FSM& fsm,STATE& state )const
- {
- return (Container()(evt,fsm,state)).insert(Param1()(evt,fsm,state),Param2()(evt,fsm,state));
- }
- // version for state action + second param is an iterator (meaning that, Container is an associative container)
- template <class Event,class FSM,class STATE>
- typename ::boost::enable_if<
- typename ::boost::mpl::and_<
- typename ::boost::mpl::has_key<
- typename Container::tag_type,state_action_tag>::type,
- typename has_iterator_category<
- typename Param2::template state_action_result<Event,FSM,STATE>::type
- >::type
- >::type,
- typename state_action_result<Event,FSM,STATE>::type
- >::type
- operator()(Event const& evt,FSM& fsm,STATE& state )const
- {
- (Container()(evt,fsm,state)).insert(Param1()(evt,fsm,state),Param2()(evt,fsm,state));
- }
- };
- // version for 1 parameter (associative containers)
- template <class Container, class Param1>
- struct Insert_ < Container,Param1,void,void>
- : euml_action<Insert_<Container,Param1,void,void> >
- {
- template <class Event,class FSM,class STATE >
- struct state_action_result
- {
- typedef typename std::pair<
- typename get_iterator<
- typename ::boost::remove_reference<
- typename get_result_type2<Container,Event,FSM,STATE>::type>::type>::type,bool> type;
- };
- template <class EVT,class FSM,class SourceState,class TargetState>
- struct transition_action_result
- {
- typedef typename std::pair<
- typename get_iterator<
- typename ::boost::remove_reference<
- typename get_result_type<Container,EVT,FSM,SourceState,TargetState>::type>::type>::type,bool> type;
- };
- typedef ::boost::mpl::set<state_action_tag,action_tag> tag_type;
- template <class EVT,class FSM,class SourceState,class TargetState>
- typename ::boost::enable_if<
- typename ::boost::mpl::has_key<
- typename Container::tag_type,action_tag>::type,
- typename transition_action_result<EVT,FSM,SourceState,TargetState>::type >::type
- operator()(EVT const& evt, FSM& fsm,SourceState& src,TargetState& tgt)const
- {
- return (Container()(evt,fsm,src,tgt)).insert(Param1()(evt,fsm,src,tgt));
- }
- template <class Event,class FSM,class STATE>
- typename ::boost::enable_if<
- typename ::boost::mpl::has_key<
- typename Container::tag_type,state_action_tag>::type,
- typename state_action_result<Event,FSM,STATE>::type >::type
- operator()(Event const& evt,FSM& fsm,STATE& state )const
- {
- return (Container()(evt,fsm,state)).insert(Param1()(evt,fsm,state));
- }
- };
- struct insert_tag {};
- struct Insert_Helper: proto::extends< proto::terminal<insert_tag>::type, Insert_Helper, sm_domain>
- {
- Insert_Helper(){}
- template <class Arg1,class Arg2,class Arg3,class Arg4,class Arg5
- #ifdef BOOST_MSVC
- ,class Arg6
- #endif
- >
- struct In
- {
- typedef Insert_<Arg1,Arg2,Arg3,Arg4> type;
- };
- };
- Insert_Helper const insert_;
- template <class Container1,class Container2>
- struct Swap_ : euml_action<Swap_<Container1,Container2> >
- {
- template <class Event,class FSM,class STATE >
- struct state_action_result
- {
- typedef void type;
- };
- template <class EVT,class FSM,class SourceState,class TargetState>
- struct transition_action_result
- {
- typedef void type;
- };
- typedef ::boost::mpl::set<state_action_tag,action_tag> tag_type;
- template <class EVT,class FSM,class SourceState,class TargetState>
- void operator()(EVT const& evt, FSM& fsm,SourceState& src,TargetState& tgt)const
- {
- (Container1()(evt,fsm,src,tgt)).swap(Container2()(evt,fsm,src,tgt));
- }
- template <class Event,class FSM,class STATE>
- void operator()(Event const& evt,FSM& fsm,STATE& state )const
- {
- (Container1()(evt,fsm,state)).swap(Container2()(evt,fsm,state));
- }
- };
- struct swap_tag {};
- struct Swap_Helper: proto::extends< proto::terminal<swap_tag>::type, Swap_Helper, sm_domain>
- {
- Swap_Helper(){}
- template <class Arg1,class Arg2,class Arg3,class Arg4,class Arg5
- #ifdef BOOST_MSVC
- ,class Arg6
- #endif
- >
- struct In
- {
- typedef Swap_<Arg1,Arg2> type;
- };
- };
- Swap_Helper const swap_;
- template <class Container, class Iterator1, class Iterator2 ,class Enable=void >
- struct Erase_ : euml_action<Erase_<Container,Iterator1,Iterator2> >
- {
- template <class Event,class FSM,class STATE >
- struct state_action_result
- {
- typedef typename get_result_type2<Iterator1,Event,FSM,STATE>::type type;
- };
- template <class EVT,class FSM,class SourceState,class TargetState>
- struct transition_action_result
- {
- typedef typename get_result_type<Iterator1,EVT,FSM,SourceState,TargetState>::type type;
- };
- typedef ::boost::mpl::set<state_action_tag,action_tag> tag_type;
- template <class EVT,class FSM,class SourceState,class TargetState>
- typename ::boost::enable_if<
- typename ::boost::mpl::has_key<
- typename Iterator1::tag_type,action_tag>::type,
- typename transition_action_result<EVT,FSM,SourceState,TargetState>::type >::type
- operator()(EVT const& evt, FSM& fsm,SourceState& src,TargetState& tgt)const
- {
- return (Container()(evt,fsm,src,tgt)).erase(Iterator1()(evt,fsm,src,tgt));
- }
- template <class Event,class FSM,class STATE>
- typename ::boost::enable_if<
- typename ::boost::mpl::has_key<
- typename Iterator1::tag_type,state_action_tag>::type,
- typename state_action_result<Event,FSM,STATE>::type >::type
- operator()(Event const& evt,FSM& fsm,STATE& state )const
- {
- return (Container()(evt,fsm,state)).erase(Iterator1()(evt,fsm,state));
- }
- };
- template <class Container, class Iterator1 , class Iterator2 >
- struct Erase_<Container,Iterator1,Iterator2,
- typename ::boost::disable_if<typename ::boost::is_same<Iterator2,void>::type >::type>
- : euml_action<Erase_<Container,Iterator1,Iterator2> >
- {
- template <class Event,class FSM,class STATE >
- struct state_action_result
- {
- typedef typename get_result_type2<Iterator1,Event,FSM,STATE>::type type;
- };
- template <class EVT,class FSM,class SourceState,class TargetState>
- struct transition_action_result
- {
- typedef typename get_result_type<Iterator1,EVT,FSM,SourceState,TargetState>::type type;
- };
- typedef ::boost::mpl::set<state_action_tag,action_tag> tag_type;
- template <class EVT,class FSM,class SourceState,class TargetState>
- typename ::boost::enable_if<
- typename ::boost::mpl::has_key<
- typename Iterator1::tag_type,action_tag>::type,
- typename transition_action_result<EVT,FSM,SourceState,TargetState>::type >::type
- operator()(EVT const& evt, FSM& fsm,SourceState& src,TargetState& tgt)const
- {
- return (Container()(evt,fsm,src,tgt)).erase(Iterator1()(evt,fsm,src,tgt),Iterator2()(evt,fsm,src,tgt));
- }
- template <class Event,class FSM,class STATE>
- typename ::boost::enable_if<
- typename ::boost::mpl::has_key<
- typename Iterator1::tag_type,state_action_tag>::type,
- typename state_action_result<Event,FSM,STATE>::type >::type
- operator()(Event const& evt,FSM& fsm,STATE& state )const
- {
- return (Container()(evt,fsm,state)).erase(Iterator1()(evt,fsm,state),Iterator2()(evt,fsm,state));
- }
- };
- struct erase_tag {};
- struct Erase_Helper: proto::extends< proto::terminal<erase_tag>::type, Erase_Helper, sm_domain>
- {
- Erase_Helper(){}
- template <class Arg1,class Arg2,class Arg3,class Arg4,class Arg5
- #ifdef BOOST_MSVC
- ,class Arg6
- #endif
- >
- struct In
- {
- typedef Erase_<Arg1,Arg2,Arg3> type;
- };
- };
- Erase_Helper const erase_;
- template <class Container>
- struct Empty_ : euml_action<Empty_<Container> >
- {
- template <class Event,class FSM,class STATE >
- struct state_action_result
- {
- typedef bool type;
- };
- template <class EVT,class FSM,class SourceState,class TargetState>
- struct transition_action_result
- {
- typedef bool type;
- };
- typedef ::boost::mpl::set<state_action_tag,action_tag> tag_type;
- template <class EVT,class FSM,class SourceState,class TargetState>
- bool operator()(EVT const& evt, FSM& fsm,SourceState& src,TargetState& tgt)const
- {
- return (Container()(evt,fsm,src,tgt)).empty();
- }
- template <class Event,class FSM,class STATE>
- bool operator()(Event const& evt,FSM& fsm,STATE& state )const
- {
- return (Container()(evt,fsm,state)).empty();
- }
- };
- struct empty_tag {};
- struct Empty_Helper: proto::extends< proto::terminal<empty_tag>::type, Empty_Helper, sm_domain>
- {
- Empty_Helper(){}
- template <class Arg1,class Arg2,class Arg3,class Arg4,class Arg5
- #ifdef BOOST_MSVC
- ,class Arg6
- #endif
- >
- struct In
- {
- typedef Empty_<Arg1> type;
- };
- };
- Empty_Helper const empty_;
- template <class Container,class Element>
- struct ListRemove_ : euml_action<ListRemove_<Container,Element> >
- {
- template <class Event,class FSM,class STATE >
- struct state_action_result
- {
- typedef void type;
- };
- template <class EVT,class FSM,class SourceState,class TargetState>
- struct transition_action_result
- {
- typedef void type;
- };
- typedef ::boost::mpl::set<state_action_tag,action_tag> tag_type;
- template <class EVT,class FSM,class SourceState,class TargetState>
- void operator()(EVT const& evt, FSM& fsm,SourceState& src,TargetState& tgt)const
- {
- (Container()(evt,fsm,src,tgt)).remove(Element()(evt,fsm,src,tgt));
- }
- template <class Event,class FSM,class STATE>
- void operator()(Event const& evt,FSM& fsm,STATE& state )const
- {
- (Container()(evt,fsm,state)).remove(Element()(evt,fsm,state));
- }
- };
- struct list_remove_tag {};
- struct ListRemove_Helper: proto::extends< proto::terminal<list_remove_tag>::type, ListRemove_Helper, sm_domain>
- {
- ListRemove_Helper(){}
- template <class Arg1,class Arg2,class Arg3,class Arg4,class Arg5
- #ifdef BOOST_MSVC
- ,class Arg6
- #endif
- >
- struct In
- {
- typedef ListRemove_<Arg1,Arg2> type;
- };
- };
- ListRemove_Helper const list_remove_;
- template <class Container,class Element>
- struct ListRemove_If_ : euml_action<ListRemove_If_<Container,Element> >
- {
- template <class Event,class FSM,class STATE >
- struct state_action_result
- {
- typedef void type;
- };
- template <class EVT,class FSM,class SourceState,class TargetState>
- struct transition_action_result
- {
- typedef void type;
- };
- typedef ::boost::mpl::set<state_action_tag,action_tag> tag_type;
- template <class EVT,class FSM,class SourceState,class TargetState>
- void operator()(EVT const& evt, FSM& fsm,SourceState& src,TargetState& tgt)const
- {
- (Container()(evt,fsm,src,tgt)).remove_if(Element()(evt,fsm,src,tgt));
- }
- template <class Event,class FSM,class STATE>
- void operator()(Event const& evt,FSM& fsm,STATE& state )const
- {
- (Container()(evt,fsm,state)).remove_if(Element()(evt,fsm,state));
- }
- };
- struct list_remove_if_tag {};
- struct ListRemove_If_Helper: proto::extends< proto::terminal<list_remove_if_tag>::type, ListRemove_If_Helper, sm_domain>
- {
- ListRemove_If_Helper(){}
- template <class Arg1…