libstdc++
std::enable_shared_from_this< _Tp > Class Template Reference

Public Member Functions

shared_ptr< _Tp > shared_from_this ()
 
shared_ptr< const _Tp > shared_from_this () const
 
weak_ptr< _Tp > weak_from_this () noexcept
 
weak_ptr< const _Tp > weak_from_this () const noexcept
 

Protected Member Functions

 enable_shared_from_this (const enable_shared_from_this &) noexcept
 
enable_shared_from_thisoperator= (const enable_shared_from_this &) noexcept
 

Friends

const enable_shared_from_this__enable_shared_from_this_base (const __shared_count<> &, const enable_shared_from_this *__p)
 
template<typename , _Lock_policy >
class __shared_ptr
 

Detailed Description

template<typename _Tp>
class std::enable_shared_from_this< _Tp >

Base class allowing use of the member function shared_from_this.

Since
C++11

Definition at line 919 of file bits/shared_ptr.h.

Member Function Documentation

◆ weak_from_this() [1/2]

template<typename _Tp >
weak_ptr<const _Tp> std::enable_shared_from_this< _Tp >::weak_from_this ( ) const
inlinenoexcept

Get a weak_ptr referring to the object that has *this as its base.

Since
C++17

Definition at line 952 of file bits/shared_ptr.h.

◆ weak_from_this() [2/2]

template<typename _Tp >
weak_ptr<_Tp> std::enable_shared_from_this< _Tp >::weak_from_this ( )
inlinenoexcept

Get a weak_ptr referring to the object that has *this as its base.

Since
C++17

Definition at line 948 of file bits/shared_ptr.h.


The documentation for this class was generated from the following file: