Back to home page

EIC code displayed by LXR

 
 

    


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

0001 //  (C) Copyright Dave Abrahams, Steve Cleary, Beman Dawes, Howard
0002 //  Hinnant & John Maddock 2000.  
0003 //  Use, modification and distribution are subject to the Boost Software License,
0004 //  Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
0005 //  http://www.boost.org/LICENSE_1_0.txt).
0006 //
0007 //  See http://www.boost.org/libs/type_traits for most recent version including documentation.
0008 //
0009 //  defines traits classes for composite types:
0010 //  is_array, is_pointer, is_reference, is_member_pointer, is_enum, is_union.
0011 //
0012 
0013 #ifndef BOOST_TT_COMPOSITE_TRAITS_HPP_INCLUDED
0014 #define BOOST_TT_COMPOSITE_TRAITS_HPP_INCLUDED
0015 
0016 #include <boost/type_traits/is_array.hpp>
0017 #include <boost/type_traits/is_enum.hpp>
0018 #include <boost/type_traits/is_member_pointer.hpp>
0019 #include <boost/type_traits/is_member_function_pointer.hpp>
0020 #include <boost/type_traits/is_pointer.hpp>
0021 #include <boost/type_traits/is_reference.hpp>
0022 #include <boost/type_traits/is_union.hpp>
0023 
0024 #endif // BOOST_TT_COMPOSITE_TRAITS_HPP_INCLUDED
0025 
0026 
0027 
0028 
0029