56 T* operator->()
const noexcept;
57 T& operator*()
const noexcept;
63 T*
get()
const noexcept;
69 explicit operator bool()
const noexcept;
78 bool operator==(
const U& other)
const noexcept;
87 std::strong_ordering
operator<=>(
const U& other)
const noexcept;
94 lock_ptr(std::shared_ptr<T> pShared) noexcept;
97 std::shared_ptr<T> m_pRaw;
101 link() noexcept = default;
109 link(const std::weak_ptr<U>& pWeak) noexcept;
115 link(std::weak_ptr<T> pWeak) noexcept;
123 link(const std::shared_ptr<U>& pStrong) noexcept;
131 link(const
link<U>& pLink) noexcept;
163 link(std::nullptr_t) noexcept;
174 void reset() noexcept;
186 explicit operator
bool() const noexcept;
189 bool operator==(const
link<U>&) const noexcept = delete;
191 bool operator!=(const
link<U>&) const noexcept = delete;
194 std::weak_ptr<T> m_pWeak;
199 #include <qx/link.inl>
T * get() const noexcept
Get object pointer.
bool operator==(const U &other) const noexcept
operator==
std::strong_ordering operator<=>(const U &other) const noexcept
operator<=>
std::weak_ptr wrapper that do not allow you to create strong pointer (std::shared_ptr)
lock_ptr lock() const noexcept
Lock and return strong pointer.
bool expired() const noexcept
If pointer is expired.
void reset() noexcept
Reset weak pointer.
#define QX_NONCOPYMOVABLE(className)
Define class as non copyable and non movable.