Ark Server API (ASA) - Wiki
|
Go to the source code of this file.
Namespaces | |
namespace | UE |
namespace | UE::StructuredArchive |
namespace | UE::StructuredArchive::Private |
Functions | |
template<typename T > | |
FORCEINLINE TNamedValue< T > | UE::StructuredArchive::Private::MakeNamedValue (FArchiveFieldName Name, T &Value) |
template<typename T > | |
FORCEINLINE TNamedAttribute< T > | UE::StructuredArchive::Private::MakeNamedAttribute (FArchiveFieldName Name, T &Value) |
template<typename T > | |
FORCEINLINE TOptionalNamedAttribute< T > | UE::StructuredArchive::Private::MakeOptionalNamedAttribute (FArchiveFieldName Name, T &Value, const typename TIdentity< T >::Type &Default) |
#define SA_ATTRIBUTE | ( | Name, | |
Value ) UE::StructuredArchive::Private::MakeNamedAttribute(FArchiveFieldName(Name), Value) |
Construct a TNamedAttribute given an ANSI string and value reference.
Definition at line 82 of file StructuredArchiveNameHelpers.h.
#define SA_FIELD_NAME | ( | x | ) | /*DEPRECATED_MACRO(5.1, "Field names no longer need to be wrapped in the SA_FIELD_NAME macro.")*/ FArchiveFieldName(x) |
Definition at line 76 of file StructuredArchiveNameHelpers.h.
#define SA_OPTIONAL_ATTRIBUTE | ( | Name, | |
Value, | |||
Default ) UE::StructuredArchive::Private::MakeOptionalNamedAttribute(FArchiveFieldName(Name), Value, Default) |
Construct a TOptionalNamedAttribute given an ANSI string and value reference.
Definition at line 85 of file StructuredArchiveNameHelpers.h.
#define SA_VALUE | ( | Name, | |
Value ) UE::StructuredArchive::Private::MakeNamedValue(FArchiveFieldName(Name), Value) |
Construct a TNamedValue given an ANSI string and value reference.
Definition at line 79 of file StructuredArchiveNameHelpers.h.