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
type_traits.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\tr1\type_traits.hpp
Girar
Efecto
Propiedad
Historial
// (C) Copyright John Maddock 2005. // Use, modification and distribution are 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_TR1_TYPE_TRAITS_HPP_INCLUDED # define BOOST_TR1_TYPE_TRAITS_HPP_INCLUDED # include
#ifdef BOOST_HAS_TR1_TYPE_TRAITS # include BOOST_TR1_HEADER(type_traits) #else // Boost Type Traits: #include
namespace std { namespace tr1{ using ::boost::integral_constant; using ::boost::true_type; using ::boost::false_type; using ::boost::is_void; using ::boost::is_integral; using ::boost::is_floating_point; using ::boost::is_array; using ::boost::is_pointer; using ::boost::is_reference; using ::boost::is_member_object_pointer; using ::boost::is_member_function_pointer; using ::boost::is_enum; using ::boost::is_union; using ::boost::is_class; using ::boost::is_function; using ::boost::is_arithmetic; using ::boost::is_fundamental; using ::boost::is_object; using ::boost::is_scalar; using ::boost::is_compound; using ::boost::is_member_pointer; using ::boost::is_const; using ::boost::is_volatile; using ::boost::is_pod; using ::boost::is_empty; using ::boost::is_polymorphic; using ::boost::is_abstract; using ::boost::has_trivial_constructor; using ::boost::has_trivial_copy; using ::boost::has_trivial_assign; using ::boost::has_trivial_destructor; using ::boost::has_nothrow_constructor; using ::boost::has_nothrow_copy; using ::boost::has_nothrow_assign; using ::boost::has_virtual_destructor; using ::boost::is_signed; using ::boost::is_unsigned; using ::boost::alignment_of; using ::boost::rank; using ::boost::extent; using ::boost::is_same; using ::boost::is_base_of; using ::boost::is_convertible; using ::boost::remove_const; using ::boost::remove_volatile; using ::boost::remove_cv; using ::boost::add_const; using ::boost::add_volatile; using ::boost::add_cv; using ::boost::remove_reference; using ::boost::add_reference; using ::boost::remove_extent; using ::boost::remove_all_extents; using ::boost::remove_pointer; using ::boost::add_pointer; using ::boost::aligned_storage; } } #endif #endif
type_traits.hpp
Dirección de la página
Dirección del archivo
Anterior
8/9
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.