template<typename T>
bpf::memory::WeakPtr class

Template parameters
T the type of the underlying instance

Weak smart pointer

Constructors, destructors, conversion operators

WeakPtr(const SharedPtr<T>& other) noexcept
WeakPtr(const WeakPtr<T>& other) noexcept
~WeakPtr()

Public functions

auto Lock() -> SharedPtr<T> noexcept
template<typename T1>
auto Cast() const -> WeakPtr<T1>

Function documentation

template<typename T>
bpf::memory::WeakPtr<T>::WeakPtr(const SharedPtr<T>& other) noexcept

Parameters
other shared ptr to build from

Constructs a WeakPtr from a SharedPtr

template<typename T>
bpf::memory::WeakPtr<T>::WeakPtr(const WeakPtr<T>& other) noexcept

Copy constructor

template<typename T>
SharedPtr<T> bpf::memory::WeakPtr<T>::Lock() noexcept

Returns new SharedPtr

Obtains a shared pointer from this weak pointer

template<typename T> template<typename T1>
WeakPtr<T1> bpf::memory::WeakPtr<T>::Cast() const

Template parameters
T1 the type to cast to
Returns new casted WeakPtr
Exceptions
ClassCastException in debug only if the class cannot be casted

Quick casting function