sl@0
|
1 |
// Copyright Peter Dimov and David Abrahams 2002.
|
sl@0
|
2 |
// Distributed under the Boost Software License, Version 1.0. (See
|
sl@0
|
3 |
// accompanying file LICENSE_1_0.txt or copy at
|
sl@0
|
4 |
// http://www.boost.org/LICENSE_1_0.txt)
|
sl@0
|
5 |
#ifndef GET_POINTER_DWA20021219_HPP
|
sl@0
|
6 |
# define GET_POINTER_DWA20021219_HPP
|
sl@0
|
7 |
|
sl@0
|
8 |
# include <memory>
|
sl@0
|
9 |
|
sl@0
|
10 |
namespace boost {
|
sl@0
|
11 |
|
sl@0
|
12 |
// get_pointer(p) extracts a ->* capable pointer from p
|
sl@0
|
13 |
|
sl@0
|
14 |
template<class T> T * get_pointer(T * p)
|
sl@0
|
15 |
{
|
sl@0
|
16 |
return p;
|
sl@0
|
17 |
}
|
sl@0
|
18 |
|
sl@0
|
19 |
// get_pointer(shared_ptr<T> const & p) has been moved to shared_ptr.hpp
|
sl@0
|
20 |
|
sl@0
|
21 |
template<class T> T * get_pointer(std::auto_ptr<T> const& p)
|
sl@0
|
22 |
{
|
sl@0
|
23 |
return p.get();
|
sl@0
|
24 |
}
|
sl@0
|
25 |
|
sl@0
|
26 |
|
sl@0
|
27 |
} // namespace boost
|
sl@0
|
28 |
|
sl@0
|
29 |
#endif // GET_POINTER_DWA20021219_HPP
|