Attempt to represent the S^2->S^3 header reorganisation as a series of "hg rename" operations
1 // Copyright Peter Dimov and David Abrahams 2002.
2 // Distributed under the Boost Software License, Version 1.0. (See
3 // accompanying file LICENSE_1_0.txt or copy at
4 // http://www.boost.org/LICENSE_1_0.txt)
5 #ifndef GET_POINTER_DWA20021219_HPP
6 # define GET_POINTER_DWA20021219_HPP
12 // get_pointer(p) extracts a ->* capable pointer from p
14 template<class T> T * get_pointer(T * p)
19 // get_pointer(shared_ptr<T> const & p) has been moved to shared_ptr.hpp
21 template<class T> T * get_pointer(std::auto_ptr<T> const& p)
29 #endif // GET_POINTER_DWA20021219_HPP