2011-03-22 23:05:48 +00:00
|
|
|
#ifndef BOOST_SMART_PTR_HPP_INCLUDED
|
|
|
|
#define BOOST_SMART_PTR_HPP_INCLUDED
|
|
|
|
|
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
|
|
|
//
|
2004-08-11 10:59:33 +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)
|
2002-11-19 16:23:01 +00:00
|
|
|
//
|
|
|
|
// 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>
|
2011-03-22 23:05:48 +00:00
|
|
|
# include <boost/make_shared.hpp>
|
2003-05-28 13:51:35 +00:00
|
|
|
#endif
|
2011-03-22 23:05:48 +00:00
|
|
|
|
|
|
|
#endif // #ifndef BOOST_SMART_PTR_HPP_INCLUDED
|