134 lines
9.6 KiB
C++
134 lines
9.6 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 "PropertyBindingBinding.h"
|
|
#include "PropertyBindingPath.h"
|
|
#include "StructUtils/InstancedStruct.h"
|
|
|
|
PRAGMA_DISABLE_DEPRECATION_WARNINGS
|
|
static_assert(!UE_WITH_CONSTINIT_UOBJECT, "This generated code can only be compiled with !UE_WITH_CONSTINIT_OBJECT");
|
|
void EmptyLinkFunctionForGeneratedCodePropertyBindingBinding() {}
|
|
|
|
// ********** Begin Cross Module References ********************************************************
|
|
COREUOBJECT_API UScriptStruct* Z_Construct_UScriptStruct_FInstancedStruct();
|
|
PROPERTYBINDINGUTILS_API UScriptStruct* Z_Construct_UScriptStruct_FPropertyBindingBinding();
|
|
PROPERTYBINDINGUTILS_API UScriptStruct* Z_Construct_UScriptStruct_FPropertyBindingPath();
|
|
UPackage* Z_Construct_UPackage__Script_PropertyBindingUtils();
|
|
// ********** End Cross Module References **********************************************************
|
|
|
|
// ********** Begin ScriptStruct FPropertyBindingBinding *******************************************
|
|
struct Z_Construct_UScriptStruct_FPropertyBindingBinding_Statics
|
|
{
|
|
static inline consteval int32 GetStructSize() { return sizeof(FPropertyBindingBinding); }
|
|
static inline consteval int16 GetStructAlignment() { return alignof(FPropertyBindingBinding); }
|
|
#if WITH_METADATA
|
|
static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = {
|
|
{ "Comment", "/**\n * Representation of a property binding\n */" },
|
|
{ "ModuleRelativePath", "Public/PropertyBindingBinding.h" },
|
|
{ "ToolTip", "Representation of a property binding" },
|
|
};
|
|
static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_SourcePropertyPath_MetaData[] = {
|
|
{ "Category", "Bindings" },
|
|
{ "Comment", "/** Source property path of the binding */" },
|
|
{ "ModuleRelativePath", "Public/PropertyBindingBinding.h" },
|
|
{ "ToolTip", "Source property path of the binding" },
|
|
};
|
|
static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_TargetPropertyPath_MetaData[] = {
|
|
{ "Category", "Bindings" },
|
|
{ "Comment", "/** Target property path of the binding */" },
|
|
{ "ModuleRelativePath", "Public/PropertyBindingBinding.h" },
|
|
{ "ToolTip", "Target property path of the binding" },
|
|
};
|
|
#if WITH_EDITORONLY_DATA
|
|
static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PropertyFunctionNode_MetaData[] = {
|
|
{ "Category", "Bindings" },
|
|
{ "Comment", "/**\x09Instance of bound PropertyFunction. */" },
|
|
{ "ModuleRelativePath", "Public/PropertyBindingBinding.h" },
|
|
{ "ToolTip", "Instance of bound PropertyFunction." },
|
|
};
|
|
#endif // WITH_EDITORONLY_DATA
|
|
#endif // WITH_METADATA
|
|
|
|
// ********** Begin ScriptStruct FPropertyBindingBinding constinit property declarations ***********
|
|
static const UECodeGen_Private::FStructPropertyParams NewProp_SourcePropertyPath;
|
|
static const UECodeGen_Private::FStructPropertyParams NewProp_TargetPropertyPath;
|
|
#if WITH_EDITORONLY_DATA
|
|
static const UECodeGen_Private::FStructPropertyParams NewProp_PropertyFunctionNode;
|
|
#endif // WITH_EDITORONLY_DATA
|
|
static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[];
|
|
// ********** End ScriptStruct FPropertyBindingBinding constinit property declarations *************
|
|
static void* NewStructOps()
|
|
{
|
|
return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps<FPropertyBindingBinding>();
|
|
}
|
|
static const UECodeGen_Private::FStructParams StructParams;
|
|
}; // struct Z_Construct_UScriptStruct_FPropertyBindingBinding_Statics
|
|
static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_FPropertyBindingBinding;
|
|
class UScriptStruct* FPropertyBindingBinding::StaticStruct()
|
|
{
|
|
if (!Z_Registration_Info_UScriptStruct_FPropertyBindingBinding.OuterSingleton)
|
|
{
|
|
Z_Registration_Info_UScriptStruct_FPropertyBindingBinding.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FPropertyBindingBinding, (UObject*)Z_Construct_UPackage__Script_PropertyBindingUtils(), TEXT("PropertyBindingBinding"));
|
|
}
|
|
return Z_Registration_Info_UScriptStruct_FPropertyBindingBinding.OuterSingleton;
|
|
}
|
|
|
|
// ********** Begin ScriptStruct FPropertyBindingBinding Property Definitions **********************
|
|
const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FPropertyBindingBinding_Statics::NewProp_SourcePropertyPath = { "SourcePropertyPath", nullptr, (EPropertyFlags)0x0020080000020001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FPropertyBindingBinding, SourcePropertyPath), Z_Construct_UScriptStruct_FPropertyBindingPath, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_SourcePropertyPath_MetaData), NewProp_SourcePropertyPath_MetaData) }; // 173750809
|
|
const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FPropertyBindingBinding_Statics::NewProp_TargetPropertyPath = { "TargetPropertyPath", nullptr, (EPropertyFlags)0x0020080000020001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FPropertyBindingBinding, TargetPropertyPath), Z_Construct_UScriptStruct_FPropertyBindingPath, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_TargetPropertyPath_MetaData), NewProp_TargetPropertyPath_MetaData) }; // 173750809
|
|
#if WITH_EDITORONLY_DATA
|
|
const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FPropertyBindingBinding_Statics::NewProp_PropertyFunctionNode = { "PropertyFunctionNode", nullptr, (EPropertyFlags)0x0020080800020001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FPropertyBindingBinding, PropertyFunctionNode), Z_Construct_UScriptStruct_FInstancedStruct, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PropertyFunctionNode_MetaData), NewProp_PropertyFunctionNode_MetaData) }; // 3949785911
|
|
#endif // WITH_EDITORONLY_DATA
|
|
const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FPropertyBindingBinding_Statics::PropPointers[] = {
|
|
(const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FPropertyBindingBinding_Statics::NewProp_SourcePropertyPath,
|
|
(const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FPropertyBindingBinding_Statics::NewProp_TargetPropertyPath,
|
|
#if WITH_EDITORONLY_DATA
|
|
(const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FPropertyBindingBinding_Statics::NewProp_PropertyFunctionNode,
|
|
#endif // WITH_EDITORONLY_DATA
|
|
};
|
|
static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FPropertyBindingBinding_Statics::PropPointers) < 2048);
|
|
// ********** End ScriptStruct FPropertyBindingBinding Property Definitions ************************
|
|
const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FPropertyBindingBinding_Statics::StructParams = {
|
|
(UObject* (*)())Z_Construct_UPackage__Script_PropertyBindingUtils,
|
|
nullptr,
|
|
&NewStructOps,
|
|
"PropertyBindingBinding",
|
|
Z_Construct_UScriptStruct_FPropertyBindingBinding_Statics::PropPointers,
|
|
UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FPropertyBindingBinding_Statics::PropPointers),
|
|
sizeof(FPropertyBindingBinding),
|
|
alignof(FPropertyBindingBinding),
|
|
RF_Public|RF_Transient|RF_MarkAsNative,
|
|
EStructFlags(0x00000001),
|
|
METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FPropertyBindingBinding_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FPropertyBindingBinding_Statics::Struct_MetaDataParams)
|
|
};
|
|
UScriptStruct* Z_Construct_UScriptStruct_FPropertyBindingBinding()
|
|
{
|
|
if (!Z_Registration_Info_UScriptStruct_FPropertyBindingBinding.InnerSingleton)
|
|
{
|
|
UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_FPropertyBindingBinding.InnerSingleton, Z_Construct_UScriptStruct_FPropertyBindingBinding_Statics::StructParams);
|
|
}
|
|
return CastChecked<UScriptStruct>(Z_Registration_Info_UScriptStruct_FPropertyBindingBinding.InnerSingleton);
|
|
}
|
|
// ********** End ScriptStruct FPropertyBindingBinding *********************************************
|
|
|
|
// ********** Begin Registration *******************************************************************
|
|
struct Z_CompiledInDeferFile_FID_Engine_Plugins_Runtime_PropertyBindingUtils_Source_PropertyBindingUtils_Public_PropertyBindingBinding_h__Script_PropertyBindingUtils_Statics
|
|
{
|
|
static constexpr FStructRegisterCompiledInInfo ScriptStructInfo[] = {
|
|
{ FPropertyBindingBinding::StaticStruct, Z_Construct_UScriptStruct_FPropertyBindingBinding_Statics::NewStructOps, TEXT("PropertyBindingBinding"),&Z_Registration_Info_UScriptStruct_FPropertyBindingBinding, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FPropertyBindingBinding), 2042892681U) },
|
|
};
|
|
}; // Z_CompiledInDeferFile_FID_Engine_Plugins_Runtime_PropertyBindingUtils_Source_PropertyBindingUtils_Public_PropertyBindingBinding_h__Script_PropertyBindingUtils_Statics
|
|
static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Engine_Plugins_Runtime_PropertyBindingUtils_Source_PropertyBindingUtils_Public_PropertyBindingBinding_h__Script_PropertyBindingUtils_881738972{
|
|
TEXT("/Script/PropertyBindingUtils"),
|
|
nullptr, 0,
|
|
Z_CompiledInDeferFile_FID_Engine_Plugins_Runtime_PropertyBindingUtils_Source_PropertyBindingUtils_Public_PropertyBindingBinding_h__Script_PropertyBindingUtils_Statics::ScriptStructInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Engine_Plugins_Runtime_PropertyBindingUtils_Source_PropertyBindingUtils_Public_PropertyBindingBinding_h__Script_PropertyBindingUtils_Statics::ScriptStructInfo),
|
|
nullptr, 0,
|
|
};
|
|
// ********** End Registration *********************************************************************
|
|
|
|
PRAGMA_ENABLE_DEPRECATION_WARNINGS
|