owner_less.hpp 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. #ifndef BOOST_SMART_PTR_OWNER_LESS_HPP_INCLUDED
  2. #define BOOST_SMART_PTR_OWNER_LESS_HPP_INCLUDED
  3. //
  4. // owner_less.hpp
  5. //
  6. // Copyright (c) 2008 Frank Mori Hess
  7. //
  8. // Distributed under the Boost Software License, Version 1.0. (See
  9. // accompanying file LICENSE_1_0.txt or copy at
  10. // http://www.boost.org/LICENSE_1_0.txt)
  11. //
  12. // See http://www.boost.org/libs/smart_ptr/smart_ptr.htm for documentation.
  13. //
  14. #include <functional>
  15. namespace boost
  16. {
  17. template<typename T> class shared_ptr;
  18. template<typename T> class weak_ptr;
  19. namespace detail
  20. {
  21. template<typename T, typename U>
  22. struct generic_owner_less : public std::binary_function<T, T, bool>
  23. {
  24. bool operator()(const T &lhs, const T &rhs) const
  25. {
  26. return lhs.owner_before(rhs);
  27. }
  28. bool operator()(const T &lhs, const U &rhs) const
  29. {
  30. return lhs.owner_before(rhs);
  31. }
  32. bool operator()(const U &lhs, const T &rhs) const
  33. {
  34. return lhs.owner_before(rhs);
  35. }
  36. };
  37. } // namespace detail
  38. template<typename T> struct owner_less;
  39. template<typename T>
  40. struct owner_less<shared_ptr<T> >:
  41. public detail::generic_owner_less<shared_ptr<T>, weak_ptr<T> >
  42. {};
  43. template<typename T>
  44. struct owner_less<weak_ptr<T> >:
  45. public detail::generic_owner_less<weak_ptr<T>, shared_ptr<T> >
  46. {};
  47. } // namespace boost
  48. #endif // #ifndef BOOST_SMART_PTR_OWNER_LESS_HPP_INCLUDED