Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/TComPtr
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
TComPtr () |
Default constructor (initialized to null). | Microsoft/COMPointer.h | |
TComPtr
(
PointerType*const Object |
Create and initialize a new instance. | Microsoft/COMPointer.h | |
| Copy constructor. | Microsoft/COMPointer.h | ||
| Move constructor. | Microsoft/COMPointer.h |
TComPtr()
Description
Default constructor (initialized to null).
| Name | TComPtr |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Microsoft/COMPointer.h |
| Include Path | #include "Microsoft/COMPointer.h" |
TComPtr()
TComPtr(PointerType *const)
Description
Create and initialize a new instance.
| Name | TComPtr |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Microsoft/COMPointer.h |
| Include Path | #include "Microsoft/COMPointer.h" |
TComPtr
(
PointerType *const Object
)
Parameters
| Name | Remarks |
|---|---|
| Object | The object to point to. |
TComPtr(const TComPtr< PointerType > &)
Description
Copy constructor.
| Name | TComPtr |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Microsoft/COMPointer.h |
| Include Path | #include "Microsoft/COMPointer.h" |
TComPtr
(
const TComPtr < PointerType > & Other
)
Parameters
| Name | Remarks |
|---|---|
| Other | The instance to copy. |
TComPtr(TComPtr< PointerType > &&)
Description
Move constructor.
| Name | TComPtr |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Microsoft/COMPointer.h |
| Include Path | #include "Microsoft/COMPointer.h" |
TComPtr
(
TComPtr < PointerType > && Other
)
Parameters
| Name | Remarks |
|---|---|
| Other | The instance to move. |