mirror of
https://github.com/boostorg/statechart.git
synced 2026-01-22 17:52:16 +00:00
30 lines
728 B
C++
30 lines
728 B
C++
#ifndef CONFIGURING_HPP
|
|
#define CONFIGURING_HPP
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
// Copyright (c) Andreas Huber Doenni 2002-2004.
|
|
// Use, modification and distribution are subject to the Boost Software
|
|
// License, Version 1.0. (See accompanying 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>
|
|
|
|
namespace fsm = boost::fsm;
|
|
|
|
|
|
|
|
struct Configuring : fsm::simple_state< Configuring, NotShooting,
|
|
fsm::transition< EvConfig, Idle > >
|
|
{
|
|
Configuring();
|
|
~Configuring();
|
|
};
|
|
|
|
|
|
|
|
#endif
|