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
flush_multi_pass.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\spirit\utility\flush_multi_pass.hpp
Girar
Efecto
Propiedad
Historial
/*============================================================================= Copyright (c) 2001-2003 Daniel Nuffer http://spirit.sourceforge.net/ Use, modification and distribution is 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) =============================================================================*/ #ifndef BOOST_SPIRIT_FLUSH_MULTI_PASS_HPP #define BOOST_SPIRIT_FLUSH_MULTI_PASS_HPP /////////////////////////////////////////////////////////////////////////////// #include
#include
/////////////////////////////////////////////////////////////////////////////// namespace boost { namespace spirit { namespace impl { template
void flush_iterator(T &) {} template
void flush_iterator(boost::spirit::multi_pass< T1, T2, T3, T4, boost::spirit::multi_pass_policies::std_deque> &i) { i.clear_queue(); } } // namespace impl /////////////////////////////////////////////////////////////////////////// // // flush_multi_pass_parser // // The flush_multi_pass_parser flushes an underlying // multi_pass_iterator during the normal parsing process. This may // be used at certain points during the parsing process, when it is // clear, that no backtracking is needed anymore and the input // gathered so far may be discarded. // /////////////////////////////////////////////////////////////////////////// class flush_multi_pass_parser : public parser
{ public: typedef flush_multi_pass_parser this_t; template
typename parser_result
::type parse(ScannerT const& scan) const { impl::flush_iterator(scan.first); return scan.empty_match(); } }; /////////////////////////////////////////////////////////////////////////// // // predefined flush_multi_pass_p object // // This object should may used to flush a multi_pass_iterator along // the way during the normal parsing process. // /////////////////////////////////////////////////////////////////////////// flush_multi_pass_parser const flush_multi_pass_p = flush_multi_pass_parser(); }} // namespace boost::spirit #endif // BOOST_SPIRIT_FLUSH_MULTI_PASS_HPP
flush_multi_pass.hpp
Dirección de la página
Dirección del archivo
Anterior
9/19
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.