smart_ptr.hpp 892 B

12345678910111213141516171819202122232425262728293031
  1. #ifndef BOOST_SMART_PTR_HPP_INCLUDED
  2. #define BOOST_SMART_PTR_HPP_INCLUDED
  3. //
  4. // smart_ptr.hpp
  5. //
  6. // For convenience, this header includes the rest of the smart
  7. // pointer library headers.
  8. //
  9. // Copyright (c) 2003 Peter Dimov Distributed under the Boost
  10. // Software License, Version 1.0. (See accompanying file
  11. // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  12. //
  13. // http://www.boost.org/libs/smart_ptr/smart_ptr.htm
  14. //
  15. #include <boost/config.hpp>
  16. #include <boost/scoped_ptr.hpp>
  17. #include <boost/scoped_array.hpp>
  18. #include <boost/shared_ptr.hpp>
  19. #include <boost/shared_array.hpp>
  20. #if !defined(BOOST_NO_MEMBER_TEMPLATES) || defined(BOOST_MSVC6_MEMBER_TEMPLATES)
  21. # include <boost/weak_ptr.hpp>
  22. # include <boost/intrusive_ptr.hpp>
  23. # include <boost/enable_shared_from_this.hpp>
  24. # include <boost/make_shared.hpp>
  25. #endif
  26. #endif // #ifndef BOOST_SMART_PTR_HPP_INCLUDED