Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009 #ifndef BOOST_DETAIL_HAS_DEFAULT_CONSTRUCTOR_HPP_INCLUDED
00010 #define BOOST_DETAIL_HAS_DEFAULT_CONSTRUCTOR_HPP_INCLUDED
00011
00012 #include <boost/type_traits/has_trivial_constructor.hpp>
00013
00014 namespace boost { namespace detail {
00015
00020
00021 template <class T>
00022 struct has_default_constructor
00023 : public has_trivial_constructor<T>
00024 {};
00025
00026 } }
00027
00028
00029 #endif // BOOST_DETAIL_HAS_DEFAULT_CONSTRUCTOR_HPP_INCLUDED