sl@0
|
1 |
//
|
sl@0
|
2 |
// smart_ptr.hpp
|
sl@0
|
3 |
//
|
sl@0
|
4 |
// For convenience, this header includes the rest of the smart
|
sl@0
|
5 |
// pointer library headers.
|
sl@0
|
6 |
//
|
sl@0
|
7 |
// Copyright (c) 2003 Peter Dimov Distributed under the Boost
|
sl@0
|
8 |
// Software License, Version 1.0. (See accompanying file
|
sl@0
|
9 |
// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// http://www.boost.org/libs/smart_ptr/smart_ptr.htm
|
sl@0
|
12 |
//
|
sl@0
|
13 |
|
sl@0
|
14 |
#include <boost/config.hpp>
|
sl@0
|
15 |
|
sl@0
|
16 |
#include <boost/scoped_ptr.hpp>
|
sl@0
|
17 |
#include <boost/scoped_array.hpp>
|
sl@0
|
18 |
#include <boost/shared_ptr.hpp>
|
sl@0
|
19 |
#include <boost/shared_array.hpp>
|
sl@0
|
20 |
|
sl@0
|
21 |
#if !defined(BOOST_NO_MEMBER_TEMPLATES) || defined(BOOST_MSVC6_MEMBER_TEMPLATES)
|
sl@0
|
22 |
# include <boost/weak_ptr.hpp>
|
sl@0
|
23 |
# include <boost/intrusive_ptr.hpp>
|
sl@0
|
24 |
# include <boost/enable_shared_from_this.hpp>
|
sl@0
|
25 |
#endif
|