Searched defs:ComPtr (Results 1 – 2 of 2) sorted by relevance
82 template<class U> ComPtr(U *other) throw() : ptr_(other) { in ComPtr() function91 ComPtr(const ComPtr<U> &other) throw() : ptr_(other.Get()) { in ComPtr() function101 ComPtr(ComPtr<U>&& other) throw() : ptr_(other.Detach()) {} in ComPtr() function
66 class ComPtr; variable