Configuring.hpp 999 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. #ifndef BOOST_STATECHART_EXAMPLE_CONFIGURING_HPP_INCLUDED
  2. #define BOOST_STATECHART_EXAMPLE_CONFIGURING_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. //////////////////////////////////////////////////////////////////////////////
  8. #include "Camera.hpp"
  9. #include <boost/statechart/simple_state.hpp>
  10. #include <boost/statechart/transition.hpp>
  11. #include <boost/config.hpp>
  12. #ifdef BOOST_INTEL
  13. # pragma warning( disable: 304 ) // access control not specified
  14. #endif
  15. namespace sc = boost::statechart;
  16. //////////////////////////////////////////////////////////////////////////////
  17. struct Configuring : sc::simple_state< Configuring, NotShooting >
  18. {
  19. typedef sc::transition< EvConfig, Idle > reactions;
  20. Configuring();
  21. ~Configuring();
  22. };
  23. #endif