2003-03-03 15:53:48 +00:00
|
|
|
//
|
|
|
|
// smart_ptr.hpp
|
|
|
|
//
|
2004-02-05 09:14:22 +00:00
|
|
|
// For convenience, this header includes the rest of the smart
|
|
|
|
// pointer library headers.
|
2003-03-03 15:53:48 +00:00
|
|
|
//
|
2004-11-20 09:08:45 +00:00
|
|
|
// Copyright (c) 2003 Peter Dimov Distributed under the Boost
|
|
|
|
// Software License, Version 1.0. (See accompanying file
|
|
|
|
// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
2003-03-03 15:53:48 +00:00
|
|
|
//
|
|
|
|
// http://www.boost.org/libs/smart_ptr/smart_ptr.htm
|
|
|
|
//
|
2001-02-12 14:44:53 +00:00
|
|
|
|
2004-02-05 09:14:22 +00:00
|
|
|
#include <boost/config.hpp>
|
|
|
|
|
|
|
|
#include <boost/scoped_ptr.hpp>
|
2002-05-21 23:39:58 +00:00
|
|
|
#include <boost/scoped_array.hpp>
|
|
|
|
#include <boost/shared_ptr.hpp>
|
|
|
|
#include <boost/shared_array.hpp>
|
2004-02-05 09:14:22 +00:00
|
|
|
|
|
|
|
#if !defined(BOOST_NO_MEMBER_TEMPLATES) || defined(BOOST_MSVC6_MEMBER_TEMPLATES)
|
|
|
|
# include <boost/weak_ptr.hpp>
|
|
|
|
# include <boost/intrusive_ptr.hpp>
|
|
|
|
# include <boost/enable_shared_from_this.hpp>
|
|
|
|
#endif
|