sl@0: ////////////////////////////////////////////////////////////////////////////// sl@0: // sl@0: // (C) Copyright Ion Gaztaņaga 2005. sl@0: // Distributed under the Boost Software License, Version 1.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: ////////////////////////////////////////////////////////////////////////////// sl@0: sl@0: #ifndef BOOST_POINTER_CAST_HPP sl@0: #define BOOST_POINTER_CAST_HPP sl@0: sl@0: namespace boost { sl@0: sl@0: //static_pointer_cast overload for raw pointers sl@0: template sl@0: inline T* static_pointer_cast(U *ptr) sl@0: { sl@0: return static_cast(ptr); sl@0: } sl@0: sl@0: //dynamic_pointer_cast overload for raw pointers sl@0: template sl@0: inline T* dynamic_pointer_cast(U *ptr) sl@0: { sl@0: return dynamic_cast(ptr); sl@0: } sl@0: sl@0: //const_pointer_cast overload for raw pointers sl@0: template sl@0: inline T* const_pointer_cast(U *ptr) sl@0: { sl@0: return const_cast(ptr); sl@0: } sl@0: sl@0: //reinterpret_pointer_cast overload for raw pointers sl@0: template sl@0: inline T* reinterpret_pointer_cast(U *ptr) sl@0: { sl@0: return reinterpret_cast(ptr); sl@0: } sl@0: sl@0: } // namespace boost sl@0: sl@0: #endif //BOOST_POINTER_CAST_HPP