mirror of
https://github.com/boostorg/statechart.git
synced 2026-01-24 18:32:22 +00:00
38 lines
855 B
C++
38 lines
855 B
C++
#ifndef BOOST_FSM_EXAMPLE_CONFIGURING_HPP
|
|
#define BOOST_FSM_EXAMPLE_CONFIGURING_HPP
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
// (c) Copyright Andreas Huber Doenni 2002-2004
|
|
// Distributed under the Boost Software License, Version 1.0. (See accompany-
|
|
// ing file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#include "Camera.hpp"
|
|
|
|
#include <boost/fsm/simple_state.hpp>
|
|
#include <boost/fsm/transition.hpp>
|
|
|
|
#include <boost/config.hpp>
|
|
|
|
#ifdef BOOST_INTEL
|
|
# pragma warning( disable: 304 ) // access control not specified
|
|
#endif
|
|
|
|
|
|
|
|
namespace fsm = boost::fsm;
|
|
|
|
|
|
|
|
struct Configuring : fsm::simple_state< Configuring, NotShooting,
|
|
fsm::transition< EvConfig, Idle > >
|
|
{
|
|
Configuring();
|
|
~Configuring();
|
|
};
|
|
|
|
|
|
|
|
#endif
|