]> git.lyx.org Git - lyx.git/blob - boost/boost/type_traits.hpp
02d76e0e2b97a5229d992ab38e73a79fdc7371bb
[lyx.git] / boost / boost / type_traits.hpp
1 //  (C) Copyright Boost.org 2000. Permission to copy, use, modify, sell and
2 //  distribute this software is granted provided this copyright notice appears
3 //  in all copies. This software is provided "as is" without express or implied
4 //  warranty, and with no claim as to its suitability for any purpose.
5
6 //  See http://www.boost.org for most recent version including documentation.
7
8 #ifndef BOOST_TYPE_TRAITS_HPP
9 #define BOOST_TYPE_TRAITS_HPP
10
11 #include <boost/type_traits/fwd.hpp>
12 #include <boost/type_traits/ice.hpp>
13 #include <boost/type_traits/conversion_traits.hpp>
14 #include <boost/type_traits/arithmetic_traits.hpp>
15 #include <boost/type_traits/cv_traits.hpp>
16 #include <boost/type_traits/composite_traits.hpp>
17 #include <boost/type_traits/alignment_traits.hpp>
18 #include <boost/type_traits/object_traits.hpp>
19 #include <boost/type_traits/transform_traits.hpp>
20 #include <boost/type_traits/same_traits.hpp>
21 #include <boost/type_traits/function_traits.hpp>
22
23 /**************************************************************************/
24
25 //
26 // undefine helper macro's:
27 //
28 #undef BOOST_IS_CLASS
29 #undef BOOST_IS_ENUM
30 #undef BOOST_IS_UNION
31 #undef BOOST_IS_POD
32 #undef BOOST_IS_EMPTY
33 #undef BOOST_HAS_TRIVIAL_CONSTRUCTOR
34 #undef BOOST_HAS_TRIVIAL_COPY
35 #undef BOOST_HAS_TRIVIAL_ASSIGN
36 #undef BOOST_HAS_TRIVIAL_DESTRUCTOR
37
38 #endif // BOOST_TYPE_TRAITS_HPP
39
40
41
42