1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/ossrv/ossrv_pub/boost_apis/boost/smart_ptr.hpp Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,25 @@
1.4 +//
1.5 +// smart_ptr.hpp
1.6 +//
1.7 +// For convenience, this header includes the rest of the smart
1.8 +// pointer library headers.
1.9 +//
1.10 +// Copyright (c) 2003 Peter Dimov Distributed under the Boost
1.11 +// Software License, Version 1.0. (See accompanying file
1.12 +// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
1.13 +//
1.14 +// http://www.boost.org/libs/smart_ptr/smart_ptr.htm
1.15 +//
1.16 +
1.17 +#include <boost/config.hpp>
1.18 +
1.19 +#include <boost/scoped_ptr.hpp>
1.20 +#include <boost/scoped_array.hpp>
1.21 +#include <boost/shared_ptr.hpp>
1.22 +#include <boost/shared_array.hpp>
1.23 +
1.24 +#if !defined(BOOST_NO_MEMBER_TEMPLATES) || defined(BOOST_MSVC6_MEMBER_TEMPLATES)
1.25 +# include <boost/weak_ptr.hpp>
1.26 +# include <boost/intrusive_ptr.hpp>
1.27 +# include <boost/enable_shared_from_this.hpp>
1.28 +#endif