Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:53:12

0001 //  (C) Copyright Steve Cleary, Beman Dawes, Howard Hinnant & John Maddock 2000.
0002 //  Use, modification and distribution are subject to the Boost Software License,
0003 //  Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
0004 //  http://www.boost.org/LICENSE_1_0.txt).
0005 //
0006 //  See http://www.boost.org/libs/type_traits for most recent version including documentation.
0007 //
0008 //  defines object traits classes:
0009 //  is_object, is_scalar, is_class, is_compound, is_pod, 
0010 //  has_trivial_constructor, has_trivial_copy, has_trivial_assign, 
0011 //  has_trivial_destructor, is_empty.
0012 //
0013 
0014 #ifndef BOOST_TT_OBJECT_TRAITS_HPP_INLCUDED
0015 #define BOOST_TT_OBJECT_TRAITS_HPP_INLCUDED
0016 
0017 #include <boost/type_traits/has_trivial_assign.hpp>
0018 #include <boost/type_traits/has_trivial_constructor.hpp>
0019 #include <boost/type_traits/has_trivial_copy.hpp>
0020 #include <boost/type_traits/has_trivial_destructor.hpp>
0021 #include <boost/type_traits/has_nothrow_constructor.hpp>
0022 #include <boost/type_traits/has_nothrow_copy.hpp>
0023 #include <boost/type_traits/has_nothrow_assign.hpp>
0024 #include <boost/type_traits/is_base_and_derived.hpp>
0025 #include <boost/type_traits/is_class.hpp>
0026 #include <boost/type_traits/is_compound.hpp>
0027 #include <boost/type_traits/is_empty.hpp>
0028 #include <boost/type_traits/is_object.hpp>
0029 #include <boost/type_traits/is_pod.hpp>
0030 #include <boost/type_traits/is_scalar.hpp>
0031 #include <boost/type_traits/is_stateless.hpp>
0032 
0033 #endif // BOOST_TT_OBJECT_TRAITS_HPP_INLCUDED