/usr/include/boost/smart_ptr
NameSizeModeActions
detail/-0755rm
allocate_local_shared_array.hpp56550644editdlrm
allocate_shared_array.hpp99590644editdlrm
allocate_unique.hpp123690644editdlrm
atomic_shared_ptr.hpp58150644editdlrm
bad_weak_ptr.hpp17440644editdlrm
enable_shared_from.hpp11840644editdlrm
enable_shared_from_raw.hpp44790644editdlrm
enable_shared_from_this.hpp21750644editdlrm
intrusive_ptr.hpp94270644editdlrm
intrusive_ref_counter.hpp58170644editdlrm
local_shared_ptr.hpp193770644editdlrm
make_local_shared.hpp5760644editdlrm
make_local_shared_array.hpp21790644editdlrm
make_local_shared_object.hpp47870644editdlrm
make_shared.hpp7070644editdlrm
make_shared_array.hpp19960644editdlrm
make_shared_object.hpp246220644editdlrm
make_unique.hpp17830644editdlrm
owner_equal_to.hpp6710644editdlrm
owner_hash.hpp6000644editdlrm
owner_less.hpp8530644editdlrm
scoped_array.hpp33010644editdlrm
scoped_ptr.hpp40820644editdlrm
shared_array.hpp72520644editdlrm
shared_ptr.hpp311990644editdlrm
weak_ptr.hpp75820644editdlrm
Edit: /usr/include/boost/smart_ptr/weak_ptr.hpp (7582B)
#ifndef BOOST_SMART_PTR_WEAK_PTR_HPP_INCLUDED #define BOOST_SMART_PTR_WEAK_PTR_HPP_INCLUDED // // weak_ptr.hpp // // Copyright (c) 2001, 2002, 2003 Peter Dimov // // Distributed under the Boost Software License, Version 1.0. (See // accompanying file LICENSE_1_0.txt or copy at // http://www.boost.org/LICENSE_1_0.txt) // // See http://www.boost.org/libs/smart_ptr/ for documentation. // #include #include #include #include #include namespace boost { template class weak_ptr { private: // Borland 5.5.1 specific workarounds typedef weak_ptr this_type; public: typedef typename boost::detail::sp_element< T >::type element_type; BOOST_CONSTEXPR weak_ptr() BOOST_SP_NOEXCEPT : px(0), pn() { } // generated copy constructor, assignment, destructor are fine... #if !defined( BOOST_NO_CXX11_RVALUE_REFERENCES ) // ... except in C++0x, move disables the implicit copy weak_ptr( weak_ptr const & r ) BOOST_SP_NOEXCEPT : px( r.px ), pn( r.pn ) { } weak_ptr & operator=( weak_ptr const & r ) BOOST_SP_NOEXCEPT { px = r.px; pn = r.pn; return *this; } #endif // // The "obvious" converting constructor implementation: // // template // weak_ptr(weak_ptr const & r): px(r.px), pn(r.pn) // { // } // // has a serious problem. // // r.px may already have been invalidated. The px(r.px) // conversion may require access to *r.px (virtual inheritance). // // It is not possible to avoid spurious access violations since // in multithreaded programs r.px may be invalidated at any point. // template #if !defined( BOOST_SP_NO_SP_CONVERTIBLE ) weak_ptr( weak_ptr const & r, typename boost::detail::sp_enable_if_convertible::type = boost::detail::sp_empty() ) #else weak_ptr( weak_ptr const & r ) #endif BOOST_SP_NOEXCEPT : px(r.lock().get()), pn(r.pn) { boost::detail::sp_assert_convertible< Y, T >(); } #if !defined( BOOST_NO_CXX11_RVALUE_REFERENCES ) template #if !defined( BOOST_SP_NO_SP_CONVERTIBLE ) weak_ptr( weak_ptr && r, typename boost::detail::sp_enable_if_convertible::type = boost::detail::sp_empty() ) #else weak_ptr( weak_ptr && r ) #endif BOOST_SP_NOEXCEPT : px( r.lock().get() ), pn( static_cast< boost::detail::weak_count && >( r.pn ) ) { boost::detail::sp_assert_convertible< Y, T >(); r.px = 0; } // for better efficiency in the T == Y case weak_ptr( weak_ptr && r ) BOOST_SP_NOEXCEPT : px( r.px ), pn( static_cast< boost::detail::weak_count && >( r.pn ) ) { r.px = 0; } // for better efficiency in the T == Y case weak_ptr & operator=( weak_ptr && r ) BOOST_SP_NOEXCEPT { this_type( static_cast< weak_ptr && >( r ) ).swap( *this ); return *this; } #endif template #if !defined( BOOST_SP_NO_SP_CONVERTIBLE ) weak_ptr( shared_ptr const & r, typename boost::detail::sp_enable_if_convertible::type = boost::detail::sp_empty() ) #else weak_ptr( shared_ptr const & r ) #endif BOOST_SP_NOEXCEPT : px( r.px ), pn( r.pn ) { boost::detail::sp_assert_convertible< Y, T >(); } // aliasing template weak_ptr(shared_ptr const & r, element_type * p) BOOST_SP_NOEXCEPT: px( p ), pn( r.pn ) { } template weak_ptr(weak_ptr const & r, element_type * p) BOOST_SP_NOEXCEPT: px( p ), pn( r.pn ) { } #if !defined( BOOST_NO_CXX11_RVALUE_REFERENCES ) template weak_ptr(weak_ptr && r, element_type * p) BOOST_SP_NOEXCEPT: px( p ), pn( std::move( r.pn ) ) { } #endif #if !defined(BOOST_MSVC) || (BOOST_MSVC >= 1300) template weak_ptr & operator=( weak_ptr const & r ) BOOST_SP_NOEXCEPT { boost::detail::sp_assert_convertible< Y, T >(); px = r.lock().get(); pn = r.pn; return *this; } #if !defined( BOOST_NO_CXX11_RVALUE_REFERENCES ) template weak_ptr & operator=( weak_ptr && r ) BOOST_SP_NOEXCEPT { this_type( static_cast< weak_ptr && >( r ) ).swap( *this ); return *this; } #endif template weak_ptr & operator=( shared_ptr const & r ) BOOST_SP_NOEXCEPT { boost::detail::sp_assert_convertible< Y, T >(); px = r.px; pn = r.pn; return *this; } #endif shared_ptr lock() const BOOST_SP_NOEXCEPT { return shared_ptr( *this, boost::detail::sp_nothrow_tag() ); } long use_count() const BOOST_SP_NOEXCEPT { return pn.use_count(); } bool expired() const BOOST_SP_NOEXCEPT { return pn.use_count() == 0; } bool _empty() const BOOST_SP_NOEXCEPT // extension, not in std::weak_ptr { return pn.empty(); } bool empty() const BOOST_SP_NOEXCEPT // extension, not in std::weak_ptr { return pn.empty(); } void reset() BOOST_SP_NOEXCEPT { this_type().swap(*this); } void swap(this_type & other) BOOST_SP_NOEXCEPT { std::swap(px, other.px); pn.swap(other.pn); } template bool owner_before( weak_ptr const & rhs ) const BOOST_SP_NOEXCEPT { return pn < rhs.pn; } template bool owner_before( shared_ptr const & rhs ) const BOOST_SP_NOEXCEPT { return pn < rhs.pn; } template bool owner_equals( weak_ptr const & rhs ) const BOOST_SP_NOEXCEPT { return pn == rhs.pn; } template bool owner_equals( shared_ptr const & rhs ) const BOOST_SP_NOEXCEPT { return pn == rhs.pn; } std::size_t owner_hash_value() const BOOST_SP_NOEXCEPT { return pn.hash_value(); } // Tasteless as this may seem, making all members public allows member templates // to work in the absence of member template friends. (Matthew Langston) #ifndef BOOST_NO_MEMBER_TEMPLATE_FRIENDS private: template friend class weak_ptr; template friend class shared_ptr; #endif element_type * px; // contained pointer boost::detail::weak_count pn; // reference counter }; // weak_ptr template inline bool operator<(weak_ptr const & a, weak_ptr const & b) BOOST_SP_NOEXCEPT { return a.owner_before( b ); } template void swap(weak_ptr & a, weak_ptr & b) BOOST_SP_NOEXCEPT { a.swap(b); } #if defined(__cpp_deduction_guides) template weak_ptr( shared_ptr ) -> weak_ptr; #endif // hash_value template< class T > std::size_t hash_value( boost::weak_ptr const & p ) BOOST_SP_NOEXCEPT { return p.owner_hash_value(); } } // namespace boost // std::hash, std::equal_to namespace std { #if !defined(BOOST_NO_CXX11_HDR_FUNCTIONAL) template struct hash< ::boost::weak_ptr > { std::size_t operator()( ::boost::weak_ptr const & p ) const BOOST_SP_NOEXCEPT { return p.owner_hash_value(); } }; #endif // #if !defined(BOOST_NO_CXX11_HDR_FUNCTIONAL) template struct equal_to< ::boost::weak_ptr > { bool operator()( ::boost::weak_ptr const & a, ::boost::weak_ptr const & b ) const BOOST_SP_NOEXCEPT { return a.owner_equals( b ); } }; } // namespace std #endif // #ifndef BOOST_SMART_PTR_WEAK_PTR_HPP_INCLUDED