UDocumentation UE5.7 10.02.2026 (Source)
API documentation for Unreal Engine 5.7
StructuredArchiveNameHelpers.h File Reference
#include "CoreTypes.h"
#include "Templates/Identity.h"

Go to the source code of this file.

Classes

struct  FArchiveFieldName
 
struct  UE::StructuredArchive::Private::TNamedValue< T >
 
struct  UE::StructuredArchive::Private::TNamedAttribute< T >
 
struct  UE::StructuredArchive::Private::TOptionalNamedAttribute< T >
 

Namespaces

namespace  UE
 
namespace  UE::StructuredArchive
 
namespace  UE::StructuredArchive::Private
 

Macros

#define SA_VALUE(Name, Value)   UE::StructuredArchive::Private::MakeNamedValue(FArchiveFieldName(Name), Value)
 
#define SA_ATTRIBUTE(Name, Value)   UE::StructuredArchive::Private::MakeNamedAttribute(FArchiveFieldName(Name), Value)
 
#define SA_OPTIONAL_ATTRIBUTE(Name, Value, Default)   UE::StructuredArchive::Private::MakeOptionalNamedAttribute(FArchiveFieldName(Name), Value, Default)
 

Functions

template<typename T >
UE_FORCEINLINE_HINT TNamedValue< T > UE::StructuredArchive::Private::MakeNamedValue (FArchiveFieldName Name, T &Value)
 
template<typename T >
UE_FORCEINLINE_HINT TNamedAttribute< T > UE::StructuredArchive::Private::MakeNamedAttribute (FArchiveFieldName Name, T &Value)
 
template<typename T >
UE_FORCEINLINE_HINT TOptionalNamedAttribute< T > UE::StructuredArchive::Private::MakeOptionalNamedAttribute (FArchiveFieldName Name, T &Value, const typename TIdentity< T >::Type &Default)
 

Macro Definition Documentation

◆ SA_ATTRIBUTE

Construct a TNamedAttribute given an ANSI string and value reference.

◆ SA_OPTIONAL_ATTRIBUTE

Construct a TOptionalNamedAttribute given an ANSI string and value reference.

◆ SA_VALUE

Construct a TNamedValue given an ANSI string and value reference.