Lines Matching defs:ComObjPtr
402 * ComObjPtr is a more specialized variant of ComPtr designed to be used for implementation
404 * but ComObjPtr<Machine> for a pointer to an implementation object.
406 * The methods behave the same except that ComObjPtr has the additional createObject()
409 * Note: To convert a ComObjPtr<InterfaceImpl> to a ComObj<IInterface> you have
416 * ComObjPtr<Progress> pProgress; // create the server side object
426 class ComObjPtr : public ComPtr<T>
430 ComObjPtr()
434 ComObjPtr(const ComObjPtr &that)
438 ComObjPtr(T *that_p)
442 ComObjPtr& operator=(const ComObjPtr &that)
448 ComObjPtr& operator=(T *that_p)