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
shared_container_iterator.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\shared_container_iterator.hpp
Girar
Efecto
Propiedad
Historial
// (C) Copyright Ronald Garcia 2002. 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. // See http://www.boost.org/libs/utility/shared_container_iterator.html for documentation. #ifndef SHARED_CONTAINER_ITERATOR_RG08102002_HPP #define SHARED_CONTAINER_ITERATOR_RG08102002_HPP #include "boost/iterator_adaptors.hpp" #include "boost/shared_ptr.hpp" #include
namespace boost { template
class shared_container_iterator : public iterator_adaptor< shared_container_iterator
, typename Container::iterator> { typedef iterator_adaptor< shared_container_iterator
, typename Container::iterator> super_t; typedef typename Container::iterator iterator_t; typedef boost::shared_ptr
container_ref_t; container_ref_t container_ref; public: shared_container_iterator() { } shared_container_iterator(iterator_t const& x,container_ref_t const& c) : super_t(x), container_ref(c) { } }; template
shared_container_iterator
make_shared_container_iterator(typename Container::iterator iter, boost::shared_ptr
const& container) { typedef shared_container_iterator
iterator; return iterator(iter,container); } template
std::pair< shared_container_iterator
, shared_container_iterator
> make_shared_container_range(boost::shared_ptr
const& container) { return std::make_pair( make_shared_container_iterator(container->begin(),container), make_shared_container_iterator(container->end(),container)); } } // namespace boost #endif // SHARED_CONTAINER_ITERATOR_RG08102002_HPP
shared_container_iterator.hpp
Dirección de la página
Dirección del archivo
Anterior
88/113
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.