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
input_iterator_facade.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\test\utils\iterator\input_iterator_facade.hpp
Girar
Efecto
Propiedad
Historial
// (C) Copyright Gennadiy Rozental 2004-2007. // 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) // See http://www.boost.org/libs/test for the library home page. // // File : $RCSfile$ // // Version : $Revision: 41369 $ // // Description : Input iterator facade // *************************************************************************** #ifndef BOOST_INPUT_ITERATOR_FACADE_HPP_071894GER #define BOOST_INPUT_ITERATOR_FACADE_HPP_071894GER // Boost #include
#include
//____________________________________________________________________________// namespace boost { namespace unit_test { // ************************************************************************** // // ************** input_iterator_core_access ************** // // ************************************************************************** // class input_iterator_core_access { #if defined(BOOST_NO_MEMBER_TEMPLATE_FRIENDS) || BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x551)) public: #else template
friend class input_iterator_facade; #endif template
static bool get( Facade& f ) { return f.get(); } private: // objects of this class are useless input_iterator_core_access(); //undefined }; // ************************************************************************** // // ************** input_iterator_facade ************** // // ************************************************************************** // template
class input_iterator_facade : public iterator_facade
{ public: // Constructor input_iterator_facade() : m_valid( false ), m_value() {} protected: // provide access to the Derived void init() { m_valid = true; increment(); } // Data members mutable bool m_valid; ValueType m_value; private: friend class boost::iterator_core_access; // iterator facade interface implementation void increment() { // we make post-end incrementation indefinetly safe if( m_valid ) m_valid = input_iterator_core_access::get( *static_cast
(this) ); } Reference dereference() const { return m_value; } // iterator facade interface implementation bool equal( input_iterator_facade const& rhs ) const { // two invalid iterator equals, inequal otherwise return !m_valid && !rhs.m_valid; } }; } // namespace unit_test } // namespace boost //____________________________________________________________________________// #include
#endif // BOOST_INPUT_ITERATOR_FACADE_HPP_071894GER
input_iterator_facade.hpp
Dirección de la página
Dirección del archivo
Anterior
2/4
Siguiente
Descargar
( 3 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.