sl@0: #ifndef BOOST_POINTER_TO_OTHER_HPP_INCLUDED sl@0: #define BOOST_POINTER_TO_OTHER_HPP_INCLUDED sl@0: sl@0: // sl@0: // pointer_to_other.hpp sl@0: // sl@0: // (C) Copyright Ion Gaztaņaga 2005. sl@0: // Copyright (c) 2005 Peter Dimov. sl@0: // sl@0: // Distributed under the Boost Software License, Version 1.0. sl@0: // sl@0: // (See accompanying file LICENSE_1_0.txt or copy at sl@0: // http://www.boost.org/LICENSE_1_0.txt) sl@0: // sl@0: // See http://www.boost.org/libs/smart_ptr/pointer_to_other.html sl@0: // sl@0: sl@0: namespace boost sl@0: { sl@0: sl@0: // Defines the same pointer type (raw or smart) to another pointee type sl@0: sl@0: template sl@0: struct pointer_to_other; sl@0: sl@0: template class Sp> sl@0: struct pointer_to_other< Sp, U > sl@0: { sl@0: typedef Sp type; sl@0: }; sl@0: sl@0: template class Sp> sl@0: struct pointer_to_other< Sp, U > sl@0: { sl@0: typedef Sp type; sl@0: }; sl@0: sl@0: template class Sp> sl@0: struct pointer_to_other< Sp, U > sl@0: { sl@0: typedef Sp type; sl@0: }; sl@0: sl@0: template sl@0: struct pointer_to_other< T*, U > sl@0: { sl@0: typedef U* type; sl@0: }; sl@0: sl@0: } // namespace boost sl@0: sl@0: #endif // #ifndef BOOST_POINTER_TO_OTHER_HPP_INCLUDED