memory.hpp 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. // (C) Copyright John Maddock 2005.
  2. // Use, modification and distribution are subject to the
  3. // Boost Software License, Version 1.0. (See accompanying file
  4. // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  5. #ifndef BOOST_TR1_MEMORY_HPP_INCLUDED
  6. # define BOOST_TR1_MEMORY_HPP_INCLUDED
  7. # include <boost/tr1/detail/config.hpp>
  8. # include <boost/detail/workaround.hpp>
  9. # include <memory>
  10. #ifndef BOOST_HAS_TR1_SHARED_PTR
  11. //
  12. // This header can get included by boost/shared_ptr.hpp which leads
  13. // to cyclic dependencies, the workaround is to forward declare all
  14. // the boost components, and then include the actual headers afterwards.
  15. // This is fragile, but seems to work, and doesn't require modification
  16. // of boost/shared_ptr.hpp.
  17. //
  18. namespace boost{
  19. class bad_weak_ptr;
  20. template<class T> class weak_ptr;
  21. template<class T> class shared_ptr;
  22. template<class T> void swap(weak_ptr<T> & a, weak_ptr<T> & b) BOOST_NOEXCEPT;
  23. template<class T> void swap(shared_ptr<T> & a, shared_ptr<T> & b) BOOST_NOEXCEPT;
  24. template<class T, class U> shared_ptr<T> static_pointer_cast(shared_ptr<U> const & r) BOOST_NOEXCEPT;
  25. template<class T, class U> shared_ptr<T> dynamic_pointer_cast(shared_ptr<U> const & r) BOOST_NOEXCEPT;
  26. template<class T, class U> shared_ptr<T> const_pointer_cast(shared_ptr<U> const & r) BOOST_NOEXCEPT;
  27. template<class D, class T> D * get_deleter(shared_ptr<T> const & p) BOOST_NOEXCEPT;
  28. template<class T> class enable_shared_from_this;
  29. namespace detail{
  30. class shared_count;
  31. class weak_count;
  32. }
  33. }
  34. namespace std{ namespace tr1{
  35. using ::boost::bad_weak_ptr;
  36. using ::boost::shared_ptr;
  37. #if !BOOST_WORKAROUND(__BORLANDC__, < 0x0582)
  38. using ::boost::swap;
  39. #endif
  40. using ::boost::static_pointer_cast;
  41. using ::boost::dynamic_pointer_cast;
  42. using ::boost::const_pointer_cast;
  43. using ::boost::get_deleter;
  44. using ::boost::weak_ptr;
  45. using ::boost::enable_shared_from_this;
  46. } }
  47. #include <boost/shared_ptr.hpp>
  48. #include <boost/weak_ptr.hpp>
  49. #include <boost/enable_shared_from_this.hpp>
  50. #else
  51. # if defined(BOOST_HAS_INCLUDE_NEXT) && !defined(BOOST_TR1_DISABLE_INCLUDE_NEXT)
  52. # include_next BOOST_TR1_HEADER(memory)
  53. # else
  54. # include <boost/tr1/detail/config_all.hpp>
  55. # include BOOST_TR1_STD_HEADER(BOOST_TR1_PATH(memory))
  56. # endif
  57. #endif
  58. #endif