2002-11-19 16:23:01 +00:00
|
|
|
//
|
|
|
|
// smart_ptr.hpp
|
|
|
|
//
|
2003-05-28 13:51:35 +00:00
|
|
|
// For convenience, this header includes the rest of the smart
|
|
|
|
// pointer library headers.
|
2002-11-19 16:23:01 +00:00
|
|
|
//
|
|
|
|
// Copyright (c) 1998-2002 boost.org
|
2003-05-28 13:51:35 +00:00
|
|
|
// Copyright (c) 2003 Peter Dimov
|
2002-11-19 16:23:01 +00:00
|
|
|
//
|
|
|
|
// Permission to copy, use, modify, sell and distribute this software
|
|
|
|
// is granted provided this copyright notice appears in all copies.
|
|
|
|
// This software is provided "as is" without express or implied
|
|
|
|
// warranty, and with no claim as to its suitability for any purpose.
|
|
|
|
//
|
|
|
|
// http://www.boost.org/libs/smart_ptr/smart_ptr.htm
|
|
|
|
//
|
2000-11-16 11:17:22 +00:00
|
|
|
|
2003-05-28 13:51:35 +00:00
|
|
|
#include <boost/config.hpp>
|
|
|
|
|
|
|
|
#include <boost/scoped_ptr.hpp>
|
2002-02-02 18:36:12 +00:00
|
|
|
#include <boost/scoped_array.hpp>
|
|
|
|
#include <boost/shared_ptr.hpp>
|
|
|
|
#include <boost/shared_array.hpp>
|
2003-05-28 13:51:35 +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
|