Nóta
Aðgangur að þessari síðu krefst heimildar. Þú getur prófað aðskrá þig inn eða breyta skráasöfnum.
Aðgangur að þessari síðu krefst heimildar. Þú getur prófað að breyta skráasöfnum.
Supports the WRL infrastructure and is not intended to be used directly from your code.
Syntax
template <typename T>
struct RemoveIUnknown;
template <typename T>
class RemoveIUnknown : public T;
Parameters
T
A class.
Remarks
Makes a type that is equivalent to an IUnknown-based type, but has nonvirtual QueryInterface, AddRef, and Release member functions.
By default, COM methods provide virtual QueryInterface, AddRef, and Release methods. However, ComPtr doesn't require the overhead of virtual methods. RemoveIUnknown eliminates that overhead by providing private, nonvirtual QueryInterface, AddRef, and Release methods.
Members
Public Typedefs
| Name | Description |
|---|---|
ReturnType |
A synonym for a type that is equivalent to template parameter T but has nonvirtual IUnknown members. |
Inheritance Hierarchy
T
RemoveIUnknown
Requirements
Header: client.h
Namespace: Microsoft::WRL::Details