Navigation
API > API/Runtime > API/Runtime/CoreUObject > API/Runtime/CoreUObject/TSharedStruct
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
static TSharedStruct Make () |
Creates a new TSharedStruct. | StructUtils/SharedStruct.h | |
static TSharedStruct Make
(
const T& Struct |
Creates a new TSharedStruct from templated struct instance. | StructUtils/SharedStruct.h | |
static TSharedStruct Make
(
TArgs&&... InArgs |
Creates a new TSharedStruct from the templated type and forward all arguments to constructor. | StructUtils/SharedStruct.h |
Make()
Description
Creates a new TSharedStruct. This will create a new instance of the shared struct memory.
| Name | Make |
| Type | function |
| Header File | /Engine/Source/Runtime/CoreUObject/Public/StructUtils/SharedStruct.h |
| Include Path | #include "StructUtils/SharedStruct.h" |
template<typename T, typename>
static TSharedStruct Make()
Make(const T &)
Description
Creates a new TSharedStruct from templated struct instance. This will create a new instance of the shared struct memory.
| Name | Make |
| Type | function |
| Header File | /Engine/Source/Runtime/CoreUObject/Public/StructUtils/SharedStruct.h |
| Include Path | #include "StructUtils/SharedStruct.h" |
template<typename T, typename>
static TSharedStruct Make
(
const T & Struct
)
Make(TArgs &&...)
Description
Creates a new TSharedStruct from the templated type and forward all arguments to constructor. This will create a new instance of the shared struct memory.
| Name | Make |
| Type | function |
| Header File | /Engine/Source/Runtime/CoreUObject/Public/StructUtils/SharedStruct.h |
| Include Path | #include "StructUtils/SharedStruct.h" |
template<typename... TArgs>
static TSharedStruct Make
(
TArgs &&... InArgs
)