Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/TComPtr
Overloads
| Name |
Remarks |
Include Path |
Unreal Specifiers |
|
Assignment operator. |
Microsoft/COMPointer.h |
|
|
Copy assignment operator. |
Microsoft/COMPointer.h |
|
|
Move assignment operator. |
Microsoft/COMPointer.h |
|
operator=(PointerType *const)
Description
Assignment operator.
| |
|
| Name |
operator= |
| Type |
function |
| Header File |
/Engine/Source/Runtime/Core/Public/Microsoft/COMPointer.h |
| Include Path |
#include "Microsoft/COMPointer.h" |
TComPtr < PointerType > & operator=
(
PointerType *const Object
)
Parameters
| Name |
Remarks |
| Object |
The object to point to. |
operator=(const TComPtr< PointerType > &)
Description
Copy assignment operator.
| |
|
| Name |
operator= |
| Type |
function |
| Header File |
/Engine/Source/Runtime/Core/Public/Microsoft/COMPointer.h |
| Include Path |
#include "Microsoft/COMPointer.h" |
TComPtr < PointerType > & operator=
(
const TComPtr < PointerType > & Other
)
Parameters
| Name |
Remarks |
| Other |
The instance to copy. |
operator=(TComPtr< PointerType > &&)
Description
Move assignment operator.
| |
|
| Name |
operator= |
| Type |
function |
| Header File |
/Engine/Source/Runtime/Core/Public/Microsoft/COMPointer.h |
| Include Path |
#include "Microsoft/COMPointer.h" |
TComPtr < PointerType > & operator=
(
TComPtr < PointerType > && Other
)
Parameters
| Name |
Remarks |
| Other |
The instance to move. |