Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: downloads/boost_1_34_1/libs/statechart/test/InconsistentHistoryTest6.cpp @ 29

Last change on this file since 29 was 29, checked in by landauf, 16 years ago

updated boost from 1_33_1 to 1_34_1

File size: 1.1 KB
Line 
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/event.hpp>
12#include <boost/statechart/custom_reaction.hpp>
13
14
15
16namespace sc = boost::statechart;
17
18
19
20struct EvX : sc::event< EvX > {};
21
22struct A;
23struct InconsistentHistoryTest : sc::state_machine<
24  InconsistentHistoryTest, A > {};
25
26struct B;
27// A only has deep history
28struct A : sc::simple_state<
29  A, InconsistentHistoryTest, B, sc::has_deep_history >
30{
31  typedef sc::custom_reaction< EvX > reactions;
32
33  sc::result react( const EvX & )
34  {
35    // A only has deep history
36    clear_shallow_history< A, 0 >();
37    return discard_event();
38  }
39};
40
41  struct B : sc::simple_state< B, A > {};
42
43
44int main()
45{
46  InconsistentHistoryTest machine;
47  machine.initiate();
48  return 0;
49}
Note: See TracBrowser for help on using the repository browser.