]> git.lyx.org Git - lyx.git/blob - boost/boost/smart_ptr.hpp
a1428838b471edad949f9906085fdf4be4f1fc13
[lyx.git] / boost / boost / smart_ptr.hpp
1 //
2 //  smart_ptr.hpp
3 //
4 //  For convenience, this header includes the rest of the smart
5 //  pointer library headers.
6 //
7 //  Copyright (c) 1998-2002 boost.org
8 //  Copyright (c) 2003 Peter Dimov
9 //
10 //  Permission to copy, use, modify, sell and distribute this software
11 //  is granted provided this copyright notice appears in all copies.
12 //  This software is provided "as is" without express or implied
13 //  warranty, and with no claim as to its suitability for any purpose.
14 //
15 //  http://www.boost.org/libs/smart_ptr/smart_ptr.htm
16 //
17
18 #include <boost/config.hpp>
19
20 #include <boost/scoped_ptr.hpp>
21 #include <boost/scoped_array.hpp>
22 #include <boost/shared_ptr.hpp>
23 #include <boost/shared_array.hpp>
24
25 #if !defined(BOOST_NO_MEMBER_TEMPLATES) || defined(BOOST_MSVC6_MEMBER_TEMPLATES)
26 # include <boost/weak_ptr.hpp>
27 # include <boost/intrusive_ptr.hpp>
28 # include <boost/enable_shared_from_this.hpp>
29 #endif