143 lines
8.2 KiB
C++
143 lines
8.2 KiB
C++
|
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
||
|
|
/*===========================================================================
|
||
|
|
Generated code exported from UnrealHeaderTool.
|
||
|
|
DO NOT modify this manually! Edit the corresponding .h files instead!
|
||
|
|
===========================================================================*/
|
||
|
|
|
||
|
|
#include "UObject/GeneratedCppIncludes.h"
|
||
|
|
#include "Curves/KeyHandle.h"
|
||
|
|
|
||
|
|
PRAGMA_DISABLE_DEPRECATION_WARNINGS
|
||
|
|
static_assert(!UE_WITH_CONSTINIT_UOBJECT, "This generated code can only be compiled with !UE_WITH_CONSTINIT_OBJECT");
|
||
|
|
void EmptyLinkFunctionForGeneratedCodeKeyHandle() {}
|
||
|
|
|
||
|
|
// ********** Begin Cross Module References ********************************************************
|
||
|
|
ENGINE_API UScriptStruct* Z_Construct_UScriptStruct_FKeyHandleLookupTable();
|
||
|
|
ENGINE_API UScriptStruct* Z_Construct_UScriptStruct_FKeyHandleMap();
|
||
|
|
UPackage* Z_Construct_UPackage__Script_Engine();
|
||
|
|
// ********** End Cross Module References **********************************************************
|
||
|
|
|
||
|
|
// ********** Begin ScriptStruct FKeyHandleMap *****************************************************
|
||
|
|
struct Z_Construct_UScriptStruct_FKeyHandleMap_Statics
|
||
|
|
{
|
||
|
|
static inline consteval int32 GetStructSize() { return sizeof(FKeyHandleMap); }
|
||
|
|
static inline consteval int16 GetStructAlignment() { return alignof(FKeyHandleMap); }
|
||
|
|
#if WITH_METADATA
|
||
|
|
static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = {
|
||
|
|
{ "Comment", "/**\n * Represents a mapping of key handles to key index that may be serialized \n */" },
|
||
|
|
{ "ModuleRelativePath", "Classes/Curves/KeyHandle.h" },
|
||
|
|
{ "ToolTip", "Represents a mapping of key handles to key index that may be serialized" },
|
||
|
|
};
|
||
|
|
#endif // WITH_METADATA
|
||
|
|
|
||
|
|
// ********** Begin ScriptStruct FKeyHandleMap constinit property declarations *********************
|
||
|
|
// ********** End ScriptStruct FKeyHandleMap constinit property declarations ***********************
|
||
|
|
static void* NewStructOps()
|
||
|
|
{
|
||
|
|
return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps<FKeyHandleMap>();
|
||
|
|
}
|
||
|
|
static const UECodeGen_Private::FStructParams StructParams;
|
||
|
|
}; // struct Z_Construct_UScriptStruct_FKeyHandleMap_Statics
|
||
|
|
static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_FKeyHandleMap;
|
||
|
|
class UScriptStruct* FKeyHandleMap::StaticStruct()
|
||
|
|
{
|
||
|
|
if (!Z_Registration_Info_UScriptStruct_FKeyHandleMap.OuterSingleton)
|
||
|
|
{
|
||
|
|
Z_Registration_Info_UScriptStruct_FKeyHandleMap.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FKeyHandleMap, (UObject*)Z_Construct_UPackage__Script_Engine(), TEXT("KeyHandleMap"));
|
||
|
|
}
|
||
|
|
return Z_Registration_Info_UScriptStruct_FKeyHandleMap.OuterSingleton;
|
||
|
|
}
|
||
|
|
const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FKeyHandleMap_Statics::StructParams = {
|
||
|
|
(UObject* (*)())Z_Construct_UPackage__Script_Engine,
|
||
|
|
nullptr,
|
||
|
|
&NewStructOps,
|
||
|
|
"KeyHandleMap",
|
||
|
|
nullptr,
|
||
|
|
0,
|
||
|
|
sizeof(FKeyHandleMap),
|
||
|
|
alignof(FKeyHandleMap),
|
||
|
|
RF_Public|RF_Transient|RF_MarkAsNative,
|
||
|
|
EStructFlags(0x00000001),
|
||
|
|
METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FKeyHandleMap_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FKeyHandleMap_Statics::Struct_MetaDataParams)
|
||
|
|
};
|
||
|
|
UScriptStruct* Z_Construct_UScriptStruct_FKeyHandleMap()
|
||
|
|
{
|
||
|
|
if (!Z_Registration_Info_UScriptStruct_FKeyHandleMap.InnerSingleton)
|
||
|
|
{
|
||
|
|
UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_FKeyHandleMap.InnerSingleton, Z_Construct_UScriptStruct_FKeyHandleMap_Statics::StructParams);
|
||
|
|
}
|
||
|
|
return CastChecked<UScriptStruct>(Z_Registration_Info_UScriptStruct_FKeyHandleMap.InnerSingleton);
|
||
|
|
}
|
||
|
|
// ********** End ScriptStruct FKeyHandleMap *******************************************************
|
||
|
|
|
||
|
|
// ********** Begin ScriptStruct FKeyHandleLookupTable *********************************************
|
||
|
|
struct Z_Construct_UScriptStruct_FKeyHandleLookupTable_Statics
|
||
|
|
{
|
||
|
|
static inline consteval int32 GetStructSize() { return sizeof(FKeyHandleLookupTable); }
|
||
|
|
static inline consteval int16 GetStructAlignment() { return alignof(FKeyHandleLookupTable); }
|
||
|
|
#if WITH_METADATA
|
||
|
|
static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = {
|
||
|
|
{ "Comment", "/**\n * Lookup table that maps key handles to indices in an external data structure\n * Maintains a map of key handle to last known index,\n * and an array of optional key handles that's used to validate map entries.\n */" },
|
||
|
|
{ "ModuleRelativePath", "Classes/Curves/KeyHandle.h" },
|
||
|
|
{ "ToolTip", "Lookup table that maps key handles to indices in an external data structure\nMaintains a map of key handle to last known index,\nand an array of optional key handles that's used to validate map entries." },
|
||
|
|
};
|
||
|
|
#endif // WITH_METADATA
|
||
|
|
|
||
|
|
// ********** Begin ScriptStruct FKeyHandleLookupTable constinit property declarations *************
|
||
|
|
// ********** End ScriptStruct FKeyHandleLookupTable constinit property declarations ***************
|
||
|
|
static void* NewStructOps()
|
||
|
|
{
|
||
|
|
return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps<FKeyHandleLookupTable>();
|
||
|
|
}
|
||
|
|
static const UECodeGen_Private::FStructParams StructParams;
|
||
|
|
}; // struct Z_Construct_UScriptStruct_FKeyHandleLookupTable_Statics
|
||
|
|
static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_FKeyHandleLookupTable;
|
||
|
|
class UScriptStruct* FKeyHandleLookupTable::StaticStruct()
|
||
|
|
{
|
||
|
|
if (!Z_Registration_Info_UScriptStruct_FKeyHandleLookupTable.OuterSingleton)
|
||
|
|
{
|
||
|
|
Z_Registration_Info_UScriptStruct_FKeyHandleLookupTable.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FKeyHandleLookupTable, (UObject*)Z_Construct_UPackage__Script_Engine(), TEXT("KeyHandleLookupTable"));
|
||
|
|
}
|
||
|
|
return Z_Registration_Info_UScriptStruct_FKeyHandleLookupTable.OuterSingleton;
|
||
|
|
}
|
||
|
|
const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FKeyHandleLookupTable_Statics::StructParams = {
|
||
|
|
(UObject* (*)())Z_Construct_UPackage__Script_Engine,
|
||
|
|
nullptr,
|
||
|
|
&NewStructOps,
|
||
|
|
"KeyHandleLookupTable",
|
||
|
|
nullptr,
|
||
|
|
0,
|
||
|
|
sizeof(FKeyHandleLookupTable),
|
||
|
|
alignof(FKeyHandleLookupTable),
|
||
|
|
RF_Public|RF_Transient|RF_MarkAsNative,
|
||
|
|
EStructFlags(0x00000001),
|
||
|
|
METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FKeyHandleLookupTable_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FKeyHandleLookupTable_Statics::Struct_MetaDataParams)
|
||
|
|
};
|
||
|
|
UScriptStruct* Z_Construct_UScriptStruct_FKeyHandleLookupTable()
|
||
|
|
{
|
||
|
|
if (!Z_Registration_Info_UScriptStruct_FKeyHandleLookupTable.InnerSingleton)
|
||
|
|
{
|
||
|
|
UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_FKeyHandleLookupTable.InnerSingleton, Z_Construct_UScriptStruct_FKeyHandleLookupTable_Statics::StructParams);
|
||
|
|
}
|
||
|
|
return CastChecked<UScriptStruct>(Z_Registration_Info_UScriptStruct_FKeyHandleLookupTable.InnerSingleton);
|
||
|
|
}
|
||
|
|
// ********** End ScriptStruct FKeyHandleLookupTable ***********************************************
|
||
|
|
|
||
|
|
// ********** Begin Registration *******************************************************************
|
||
|
|
struct Z_CompiledInDeferFile_FID_Engine_Source_Runtime_Engine_Classes_Curves_KeyHandle_h__Script_Engine_Statics
|
||
|
|
{
|
||
|
|
static constexpr FStructRegisterCompiledInInfo ScriptStructInfo[] = {
|
||
|
|
{ FKeyHandleMap::StaticStruct, Z_Construct_UScriptStruct_FKeyHandleMap_Statics::NewStructOps, TEXT("KeyHandleMap"),&Z_Registration_Info_UScriptStruct_FKeyHandleMap, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FKeyHandleMap), 2045622246U) },
|
||
|
|
{ FKeyHandleLookupTable::StaticStruct, Z_Construct_UScriptStruct_FKeyHandleLookupTable_Statics::NewStructOps, TEXT("KeyHandleLookupTable"),&Z_Registration_Info_UScriptStruct_FKeyHandleLookupTable, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FKeyHandleLookupTable), 1075288506U) },
|
||
|
|
};
|
||
|
|
}; // Z_CompiledInDeferFile_FID_Engine_Source_Runtime_Engine_Classes_Curves_KeyHandle_h__Script_Engine_Statics
|
||
|
|
static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Engine_Source_Runtime_Engine_Classes_Curves_KeyHandle_h__Script_Engine_825602310{
|
||
|
|
TEXT("/Script/Engine"),
|
||
|
|
nullptr, 0,
|
||
|
|
Z_CompiledInDeferFile_FID_Engine_Source_Runtime_Engine_Classes_Curves_KeyHandle_h__Script_Engine_Statics::ScriptStructInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Engine_Source_Runtime_Engine_Classes_Curves_KeyHandle_h__Script_Engine_Statics::ScriptStructInfo),
|
||
|
|
nullptr, 0,
|
||
|
|
};
|
||
|
|
// ********** End Registration *********************************************************************
|
||
|
|
|
||
|
|
PRAGMA_ENABLE_DEPRECATION_WARNINGS
|