Searched defs:CopyablePtr (Results 1 – 2 of 2) sorted by relevance
41 CopyablePtr() : ptr_(new T()) {} in CopyablePtr() function45 CopyablePtr(const CopyablePtr& other) : ptr_(new T(*other.ptr_)) {} in CopyablePtr() function52 CopyablePtr(CopyablePtr&& other) noexcept : ptr_(std::move(other.ptr_)) { in CopyablePtr() function