Files
statechart/example/Camera/Configuring.hpp
2003-06-08 20:24:55 +00:00

31 lines
824 B
C++

#ifndef CONFIGURING_HPP
#define CONFIGURING_HPP
//////////////////////////////////////////////////////////////////////////////
// Copyright (c) 2002-2003 Andreas Huber Doenni, Switzerland
// Permission to copy, use, modify, sell and distribute this software
// is granted provided this copyright notice appears in all copies.
// This software is provided "as is" without express or implied
// warranty, and with no claim as to its suitability for any purpose.
//////////////////////////////////////////////////////////////////////////////
#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