pointer_cast.hpp 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. //////////////////////////////////////////////////////////////////////////////
  2. //
  3. // (C) Copyright Ion Gaztanaga 2005.
  4. // Distributed under the Boost Software License, Version 1.0.
  5. // (See accompanying file LICENSE_1_0.txt or copy at
  6. // http://www.boost.org/LICENSE_1_0.txt)
  7. //
  8. //////////////////////////////////////////////////////////////////////////////
  9. #ifndef BOOST_POINTER_CAST_HPP
  10. #define BOOST_POINTER_CAST_HPP
  11. namespace boost {
  12. //static_pointer_cast overload for raw pointers
  13. template<class T, class U>
  14. inline T* static_pointer_cast(U *ptr)
  15. {
  16. return static_cast<T*>(ptr);
  17. }
  18. //dynamic_pointer_cast overload for raw pointers
  19. template<class T, class U>
  20. inline T* dynamic_pointer_cast(U *ptr)
  21. {
  22. return dynamic_cast<T*>(ptr);
  23. }
  24. //const_pointer_cast overload for raw pointers
  25. template<class T, class U>
  26. inline T* const_pointer_cast(U *ptr)
  27. {
  28. return const_cast<T*>(ptr);
  29. }
  30. //reinterpret_pointer_cast overload for raw pointers
  31. template<class T, class U>
  32. inline T* reinterpret_pointer_cast(U *ptr)
  33. {
  34. return reinterpret_cast<T*>(ptr);
  35. }
  36. } // namespace boost
  37. #endif //BOOST_POINTER_CAST_HPP