]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/libs/msm/include/boost/msm/row_tags.hpp
bump version to 12.2.2-pve1
[ceph.git] / ceph / src / boost / libs / msm / include / boost / msm / row_tags.hpp
CommitLineData
7c673cae
FG
1// Copyright 2008 Christophe Henry
2// henry UNDERSCORE christophe AT hotmail DOT com
3// This is an extended version of the state machine available in the boost::mpl library
4// Distributed under the same license as the original.
5// Copyright for the original version:
6// Copyright 2005 David Abrahams and Aleksey Gurtovoy. Distributed
7// under the Boost Software License, Version 1.0. (See accompanying
8// file LICENSE_1_0.txt or copy at
9// http://www.boost.org/LICENSE_1_0.txt)
10
11#ifndef BOOST_MSM_ROW_TAGS_H
12#define BOOST_MSM_ROW_TAGS_H
13
14
15
16namespace boost { namespace msm
17{
18//tags
19struct a_row_tag {};
20struct g_row_tag {};
21struct _row_tag {};
22struct row_tag {};
23// tags for internal transitions
24struct a_irow_tag {};
25struct g_irow_tag {};
26struct _irow_tag {};
27struct irow_tag {};
28// tags for transitions internal to state machines (not using any substate)
29struct sm_a_i_row_tag {};
30struct sm_g_i_row_tag {};
31struct sm__i_row_tag {};
32struct sm_i_row_tag {};
33
34// flags used internally to handle terminate / interrupt states
35struct TerminateFlag
36{
37 typedef int non_forwarding_flag;
38 typedef int event_blocking_flag;
39};
40struct InterruptedFlag
41{
42 typedef int non_forwarding_flag;
43 typedef int event_blocking_flag;
44};
45template <class EndEvent>
46struct EndInterruptFlag
47{
48 typedef int non_forwarding_flag;
49};
50
51} } // boost::msm
52#endif //BOOST_MSM_ROW_TAGS_H
53