x
Yes
No
Do you want to visit DriveHQ English website?
Inicio
Características
Precios
Prueba gratuita
Software cliente
Acerca de nosotros
Servidor de archivos
|
Solución de copias de seguridad
|
Servidor FTP
|
Servidor de correo electrónico
|
Alojamiento web
|
Software cliente
Servidor de archivos
Solución de copia de seguridad
Servidor FTP
Servidor de correo electrónico
Alojamiento web
Software cliente
asynchronous_state_machine.hpp - Hosted on DriveHQ Cloud IT Platform
Arriba
Subir
Descargar
Compartir
Publicar
Nueva carpeta
Nuevo archivo
Copiar
Cortar
Eliminar
Pegar
Clasificación
Actualizar
Ruta de la carpeta: \\game3dprogramming\materials\GameFactory\GameFactoryDemo\references\boost_1_35_0\boost\statechart\asynchronous_state_machine.hpp
Girar
Efecto
Propiedad
Historial
#ifndef BOOST_STATECHART_ASYNCHRONOUS_STATE_MACHINE_HPP_INCLUDED #define BOOST_STATECHART_ASYNCHRONOUS_STATE_MACHINE_HPP_INCLUDED ////////////////////////////////////////////////////////////////////////////// // Copyright 2002-2006 Andreas Huber Doenni // 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
#include
#include
#include
#include
// std::allocator namespace boost { namespace statechart { class event_base; ////////////////////////////////////////////////////////////////////////////// template< class MostDerived, class InitialState, class Scheduler = fifo_scheduler<>, class Allocator = std::allocator< void >, class ExceptionTranslator = null_exception_translator > class asynchronous_state_machine : public state_machine< MostDerived, InitialState, Allocator, ExceptionTranslator >, public event_processor< Scheduler > { typedef state_machine< MostDerived, InitialState, Allocator, ExceptionTranslator > machine_base; typedef event_processor< Scheduler > processor_base; protected: ////////////////////////////////////////////////////////////////////////// typedef asynchronous_state_machine my_base; asynchronous_state_machine( typename processor_base::my_context ctx ) : processor_base( ctx ) { } virtual ~asynchronous_state_machine() {} public: ////////////////////////////////////////////////////////////////////////// // The following declarations should be private. // They are only public because many compilers lack template friends. ////////////////////////////////////////////////////////////////////////// void terminate() { processor_base::terminate(); } private: ////////////////////////////////////////////////////////////////////////// virtual void initiate_impl() { machine_base::initiate(); } virtual void process_event_impl( const event_base & evt ) { machine_base::process_event( evt ); } virtual void terminate_impl() { machine_base::terminate(); } }; } // namespace statechart } // namespace boost #endif
asynchronous_state_machine.hpp
Dirección de la página
Dirección del archivo
Anterior 1/21
Siguiente
Descargar
( 2 KB )
Comments
Total ratings:
0
Average rating:
No clasificado
of 10
Would you like to comment?
Join now
, or
Logon
if you are already a member.