Navigation
API > API/Runtime > API/Runtime/CoreUObject > API/Runtime/CoreUObject/TConstSharedStruct
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
static TConstSharedStruct Make () |
Creates a new TConstSharedStruct from a templated struct type. | StructUtils/SharedStruct.h | |
static TConstSharedStruct Make
(
const T& Struct |
Creates a new TConstSharedStruct from templated struct instance. | StructUtils/SharedStruct.h | |
static TConstSharedStruct Make
(
TArgs&&... InArgs |
Creates a new TConstSharedStruct from the templated type and forward all arguments to constructor. | StructUtils/SharedStruct.h |
Make()
Description
Creates a new TConstSharedStruct from a templated struct type. 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>
static TConstSharedStruct Make()
Make(const T &)
Description
Creates a new TConstSharedStruct 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>
static TConstSharedStruct Make
(
const T & Struct
)
Make(TArgs &&...)
Description
Creates a new TConstSharedStruct 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 T, typename... TArgs>
static TConstSharedStruct Make
(
TArgs &&... InArgs
)