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