Searched defs:AutoPtr (Results 1 – 1 of 1) sorted by relevance
17 inline AutoPtr() : mPtr(nullptr) {} in AutoPtr() function74 AutoPtr<T>::AutoPtr(T *other) : mPtr(other) in AutoPtr() function82 AutoPtr<T>::AutoPtr(const AutoPtr<T> &other) : mPtr(other.mPtr) in AutoPtr() function90 AutoPtr<T>::AutoPtr(AutoPtr<T> &&other) : mPtr(other.mPtr) in AutoPtr() function