Chris@102: #ifndef BOOST_SERIALIZATION_DETAIL_IS_DEFAULT_CONSTRUCTIBLE_HPP Chris@102: #define BOOST_SERIALIZATION_DETAIL_IS_DEFAULT_CONSTRUCTIBLE_HPP Chris@102: Chris@102: // MS compatible compilers support #pragma once Chris@102: #if defined(_MSC_VER) Chris@102: # pragma once Chris@102: #endif Chris@102: Chris@102: /////////1/////////2/////////3/////////4/////////5/////////6/////////7/////////8 Chris@102: // is_default_constructible.hpp: serialization for loading stl collections Chris@102: // Chris@102: // (C) Copyright 2002 Robert Ramey - http://www.rrsd.com . Chris@102: // Use, modification and distribution is subject to the Boost Software Chris@102: // License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at Chris@102: // http://www.boost.org/LICENSE_1_0.txt) Chris@102: Chris@102: // See http://www.boost.org for updates, documentation, and revision history. Chris@102: Chris@102: #ifndef BOOST_NO_CXX11_HDR_TYPE_TRAITS Chris@102: #include Chris@102: namespace boost{ Chris@102: namespace serialization { Chris@102: namespace detail { Chris@102: Chris@102: template Chris@102: struct is_default_constructible : std::is_default_constructible {}; Chris@102: Chris@102: } // detail Chris@102: } // serializaition Chris@102: } // boost Chris@102: #else Chris@102: #include Chris@102: namespace boost{ Chris@102: namespace serialization { Chris@102: namespace detail { Chris@102: Chris@102: template Chris@102: struct is_default_constructible : boost::has_trivial_constructor {}; Chris@102: Chris@102: } // detail Chris@102: } // serializaition Chris@102: } // boost Chris@102: #endif Chris@102: Chris@102: #endif // BOOST_SERIALIZATION_DETAIL_IS_DEFAULT_CONSTRUCTIBLE_HPP