Update contrib.
1 #ifndef BOOST_STATECHART_RESULT_HPP_INCLUDED
2 #define BOOST_STATECHART_RESULT_HPP_INCLUDED
3 //////////////////////////////////////////////////////////////////////////////
4 // Copyright 2002-2006 Andreas Huber Doenni
5 // Distributed under the Boost Software License, Version 1.0. (See accompany-
6 // ing file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
7 //////////////////////////////////////////////////////////////////////////////
11 #include <boost/assert.hpp>
24 //////////////////////////////////////////////////////////////////////////////
34 struct result_utility;
36 //////////////////////////////////////////////////////////////////////////////
37 class safe_reaction_result
40 //////////////////////////////////////////////////////////////////////////
41 safe_reaction_result( const safe_reaction_result & other ) :
42 reactionResult( other.reactionResult )
44 // This assert fails when an attempt is made to make multiple copies of
45 // a result value. This makes little sense, given the requirement that
46 // an obtained result value must be returned out of the react function.
47 BOOST_ASSERT( reactionResult != consumed );
48 other.reactionResult = consumed;
51 ~safe_reaction_result()
53 // This assert fails when an obtained result value is not returned out
54 // of the react() function. This can happen if the user accidentally
55 // makes more than one call to reaction functions inside react() or
56 // accidentally makes one or more calls to reaction functions outside
58 BOOST_ASSERT( reactionResult == consumed );
62 //////////////////////////////////////////////////////////////////////////
63 safe_reaction_result( reaction_result reactionResult ) :
64 reactionResult( reactionResult )
68 operator reaction_result() const
70 const reaction_result val = reactionResult;
71 reactionResult = consumed;
75 safe_reaction_result & operator=( const safe_reaction_result & );
77 mutable reaction_result reactionResult;
79 friend struct result_utility;
89 typedef detail::reaction_result result;
91 typedef detail::safe_reaction_result result;
100 //////////////////////////////////////////////////////////////////////////////
101 struct result_utility
103 static ::boost::statechart::result make_result( reaction_result value )
108 static reaction_result get_result( ::boost::statechart::result value )
116 } // namespace detail
117 } // namespace statechart