• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 //////////////////////////////////////////////////////////////////////////////
2 // Copyright 2005-2006 Andreas Huber Doenni
3 // Distributed under the Boost Software License, Version 1.0. (See accompany-
4 // ing file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
5 //////////////////////////////////////////////////////////////////////////////
6 
7 
8 
9 #include <boost/statechart/state_machine.hpp>
10 #include <boost/statechart/simple_state.hpp>
11 #include <boost/statechart/deep_history.hpp>
12 
13 #include <boost/mpl/list.hpp>
14 
15 
16 
17 namespace sc = boost::statechart;
18 namespace mpl = boost::mpl;
19 
20 
21 
22 struct A;
23 struct UnsupportedDeepHistoryTest : sc::state_machine<
24   UnsupportedDeepHistoryTest, A > {};
25 
26 struct B;
27 struct A : sc::simple_state<
28   A, UnsupportedDeepHistoryTest, B, sc::has_deep_history > {};
29 
30   struct C;
31   struct D;
32   struct B : sc::simple_state< B, A, mpl::list< C, D > > {};
33 
34     struct C : sc::simple_state< C, B::orthogonal< 0 > > {};
35     struct D : sc::simple_state< D, B::orthogonal< 1 > > {};
36 
37 
main()38 int main()
39 {
40   UnsupportedDeepHistoryTest machine;
41   machine.initiate();
42   return 0;
43 }
44