Searched refs:ark_web_scoped_refptr (Results 1 – 2 of 2) sorted by relevance
20 class ark_web_scoped_refptr {22 ark_web_scoped_refptr() = default;24 ark_web_scoped_refptr(T* p) : ptr_(p) in ark_web_scoped_refptr() function31 ark_web_scoped_refptr(const ark_web_scoped_refptr& r) : ark_web_scoped_refptr(r.ptr_) {} in ark_web_scoped_refptr() function33 ~ark_web_scoped_refptr() in ~ark_web_scoped_refptr()55 ark_web_scoped_refptr& operator=(std::nullptr_t)60 ark_web_scoped_refptr& operator=(T* p)62 return *this = ark_web_scoped_refptr(p);65 ark_web_scoped_refptr& operator=(ark_web_scoped_refptr r) noexcept
30 using ArkWebRefPtr = ark_web_scoped_refptr<T>;