Blame view

3rdparty/boost_1_81_0/boost/statechart/custom_reaction.hpp 2.1 KB
0b6a182c   Hu Chunming   添加无鉴权注册和注销
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
  #ifndef BOOST_STATECHART_CUSTOM_REACTION_HPP_INCLUDED
  #define BOOST_STATECHART_CUSTOM_REACTION_HPP_INCLUDED
  //////////////////////////////////////////////////////////////////////////////
  // Copyright 2002-2006 Andreas Huber Doenni
  // Distributed under the Boost Software License, Version 1.0. (See accompany-
  // ing file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  //////////////////////////////////////////////////////////////////////////////
  
  
  
  #include <boost/statechart/result.hpp>
  
  #include <boost/polymorphic_cast.hpp> // boost::polymorphic_downcast
  
  
  
  namespace boost
  {
  namespace statechart
  {
  
  
  
  class event_base;
  
  //////////////////////////////////////////////////////////////////////////////
  template< class Event >
  class custom_reaction
  {
    public:
      //////////////////////////////////////////////////////////////////////////
      // The following declarations should be private.
      // They are only public because many compilers lack template friends.
      //////////////////////////////////////////////////////////////////////////
      template< class State, class EventBase, class IdType >
      static detail::reaction_result react(
        State & stt, const EventBase & evt, const IdType & eventType )
      {
        if ( eventType == Event::static_type() )
        {
          return detail::result_utility::get_result( 
            stt.react( *polymorphic_downcast< const Event * >( &evt ) ) );
        }
        else
        {
          return detail::no_reaction;
        }
      }
  };
  
  template<>
  class custom_reaction< event_base >
  {
    public:
      //////////////////////////////////////////////////////////////////////////
      // The following declarations should be private.
      // They are only public because many compilers lack template friends.
      //////////////////////////////////////////////////////////////////////////
      template< class State, class EventBase, class IdType >
      static detail::reaction_result react(
        State & stt, const EventBase & evt, const IdType & )
      {
        return detail::result_utility::get_result( stt.react( evt ) );
      }
  };
  
  
  
  } // namespace statechart
  } // namespace boost
  
  
  
  #endif