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
pattern_parser.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\wave\util\pattern_parser.hpp
Girar
Efecto
Propiedad
Historial
/*============================================================================= Boost.Wave: A Standard compliant C++ preprocessor library Global application configuration http://www.boost.org/ Copyright (c) 2001-2008 Hartmut Kaiser. Distributed under 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) =============================================================================*/ #if !defined(BOOST_SPIRIT_PATTERN_PARSER_HPP) #define BOOST_SPIRIT_PATTERN_PARSER_HPP #include
#include
// this must occur after all of the includes and before any code appears #ifdef BOOST_HAS_ABI_HEADERS #include BOOST_ABI_PREFIX #endif /////////////////////////////////////////////////////////////////////////////// namespace boost { namespace wave { namespace util { /////////////////////////////////////////////////////////////////////////// // // pattern_and class // /////////////////////////////////////////////////////////////////////////// template
struct pattern_and : public boost::spirit::char_parser
> { pattern_and(CharT pattern_, unsigned long pattern_mask_ = 0UL) : pattern(pattern_), pattern_mask((0UL != pattern_mask_) ? pattern_mask_ : pattern_) {} template
bool test(T pattern_) const { return ((unsigned long)pattern_ & pattern_mask) == (unsigned long)pattern; } CharT pattern; unsigned long pattern_mask; }; template
inline pattern_and
pattern_p(CharT pattern, long pattern_mask = 0L) { return pattern_and
(pattern, (unsigned long)pattern_mask); } /////////////////////////////////////////////////////////////////////////////// } // namespace util } // namespace wave } // namespace boost // the suffix header occurs after all of the code #ifdef BOOST_HAS_ABI_HEADERS #include BOOST_ABI_SUFFIX #endif #endif // defined(BOOST_SPIRIT_PATTERN_PARSER_HPP)
pattern_parser.hpp
Dirección de la página
Dirección del archivo
Anterior
15/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.