]> git.lyx.org Git - lyx.git/blob - boost/boost/type_traits/object_traits.hpp
Bug: 935
[lyx.git] / boost / boost / type_traits / object_traits.hpp
1 //  (C) Copyright Steve Cleary, Beman Dawes, Howard Hinnant & John Maddock 2000.
2 //  Permission to copy, use, modify, sell and
3 //  distribute this software is granted provided this copyright notice appears
4 //  in all copies. This software is provided "as is" without express or implied
5 //  warranty, and with no claim as to its suitability for any purpose.
6 //
7 //  See http://www.boost.org for most recent version including documentation.
8 //
9 //  defines object traits classes:
10 //  is_object, is_scalar, is_class, is_compound, is_pod, 
11 //  has_trivial_constructor, has_trivial_copy, has_trivial_assign, 
12 //  has_trivial_destructor, is_empty.
13 //
14
15 #ifndef BOOST_TT_OBJECT_TRAITS_HPP_INLCUDED
16 #define BOOST_TT_OBJECT_TRAITS_HPP_INLCUDED
17
18 #include "boost/type_traits/has_trivial_assign.hpp"
19 #include "boost/type_traits/has_trivial_constructor.hpp"
20 #include "boost/type_traits/has_trivial_copy.hpp"
21 #include "boost/type_traits/has_trivial_destructor.hpp"
22 #include "boost/type_traits/has_nothrow_constructor.hpp"
23 #include "boost/type_traits/has_nothrow_copy.hpp"
24 #include "boost/type_traits/has_nothrow_assign.hpp"
25 #include "boost/type_traits/is_base_and_derived.hpp"
26 #include "boost/type_traits/is_class.hpp"
27 #include "boost/type_traits/is_compound.hpp"
28 #include "boost/type_traits/is_empty.hpp"
29 #include "boost/type_traits/is_object.hpp"
30 #include "boost/type_traits/is_pod.hpp"
31 #include "boost/type_traits/is_scalar.hpp"
32 #include "boost/type_traits/is_stateless.hpp"
33
34 #endif // BOOST_TT_OBJECT_TRAITS_HPP_INLCUDED