Files
DedicatedServerCourse/Intermediate/Build/Win64/FPSTemplateServer/Inc/Engine/UHT/AudioPanelWidgetInterface.gen.cpp

247 lines
14 KiB
C++
Raw Normal View History

2026-01-28 19:08:51 -05:00
// 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 "Audio/AudioPanelWidgetInterface.h"
PRAGMA_DISABLE_DEPRECATION_WARNINGS
static_assert(!UE_WITH_CONSTINIT_UOBJECT, "This generated code can only be compiled with !UE_WITH_CONSTINIT_OBJECT");
void EmptyLinkFunctionForGeneratedCodeAudioPanelWidgetInterface() {}
// ********** Begin Cross Module References ********************************************************
COREUOBJECT_API UClass* Z_Construct_UClass_UInterface();
ENGINE_API UClass* Z_Construct_UClass_UAudioPanelWidgetInterface();
ENGINE_API UClass* Z_Construct_UClass_UAudioPanelWidgetInterface_NoRegister();
UPackage* Z_Construct_UPackage__Script_Engine();
// ********** End Cross Module References **********************************************************
// ********** Begin Interface UAudioPanelWidgetInterface Function GetEditorName ********************
struct AudioPanelWidgetInterface_eventGetEditorName_Parms
{
FText ReturnValue;
};
FText IAudioPanelWidgetInterface::GetEditorName()
{
check(0 && "Do not directly call Event functions in Interfaces. Call Execute_GetEditorName instead.");
AudioPanelWidgetInterface_eventGetEditorName_Parms Parms;
return Parms.ReturnValue;
}
static FName NAME_UAudioPanelWidgetInterface_GetEditorName = FName(TEXT("GetEditorName"));
FText IAudioPanelWidgetInterface::Execute_GetEditorName(UObject* O)
{
check(O != NULL);
check(O->GetClass()->ImplementsInterface(UAudioPanelWidgetInterface::StaticClass()));
AudioPanelWidgetInterface_eventGetEditorName_Parms Parms;
UFunction* const Func = O->FindFunction(NAME_UAudioPanelWidgetInterface_GetEditorName);
if (Func)
{
O->ProcessEvent(Func, &Parms);
}
return Parms.ReturnValue;
}
struct Z_Construct_UFunction_UAudioPanelWidgetInterface_GetEditorName_Statics
{
#if WITH_METADATA
static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = {
{ "ModuleRelativePath", "Public/Audio/AudioPanelWidgetInterface.h" },
};
#endif // WITH_METADATA
// ********** Begin Function GetEditorName constinit property declarations *************************
static const UECodeGen_Private::FTextPropertyParams NewProp_ReturnValue;
static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[];
// ********** End Function GetEditorName constinit property declarations ***************************
static const UECodeGen_Private::FFunctionParams FuncParams;
};
// ********** Begin Function GetEditorName Property Definitions ************************************
const UECodeGen_Private::FTextPropertyParams Z_Construct_UFunction_UAudioPanelWidgetInterface_GetEditorName_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Text, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AudioPanelWidgetInterface_eventGetEditorName_Parms, ReturnValue), METADATA_PARAMS(0, nullptr) };
const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UAudioPanelWidgetInterface_GetEditorName_Statics::PropPointers[] = {
(const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAudioPanelWidgetInterface_GetEditorName_Statics::NewProp_ReturnValue,
};
static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UAudioPanelWidgetInterface_GetEditorName_Statics::PropPointers) < 2048);
// ********** End Function GetEditorName Property Definitions **************************************
const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UAudioPanelWidgetInterface_GetEditorName_Statics::FuncParams = { { (UObject*(*)())Z_Construct_UClass_UAudioPanelWidgetInterface, nullptr, "GetEditorName", Z_Construct_UFunction_UAudioPanelWidgetInterface_GetEditorName_Statics::PropPointers,
UE_ARRAY_COUNT(Z_Construct_UFunction_UAudioPanelWidgetInterface_GetEditorName_Statics::PropPointers),
sizeof(AudioPanelWidgetInterface_eventGetEditorName_Parms),
RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x08020802, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UAudioPanelWidgetInterface_GetEditorName_Statics::Function_MetaDataParams), Z_Construct_UFunction_UAudioPanelWidgetInterface_GetEditorName_Statics::Function_MetaDataParams)}, };
static_assert(sizeof(AudioPanelWidgetInterface_eventGetEditorName_Parms) < MAX_uint16);
UFunction* Z_Construct_UFunction_UAudioPanelWidgetInterface_GetEditorName()
{
static UFunction* ReturnFunction = nullptr;
if (!ReturnFunction)
{
UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UAudioPanelWidgetInterface_GetEditorName_Statics::FuncParams);
}
return ReturnFunction;
}
// ********** End Interface UAudioPanelWidgetInterface Function GetEditorName **********************
// ********** Begin Interface UAudioPanelWidgetInterface Function GetIconBrushName *****************
struct AudioPanelWidgetInterface_eventGetIconBrushName_Parms
{
FName ReturnValue;
};
FName IAudioPanelWidgetInterface::GetIconBrushName()
{
check(0 && "Do not directly call Event functions in Interfaces. Call Execute_GetIconBrushName instead.");
AudioPanelWidgetInterface_eventGetIconBrushName_Parms Parms;
return Parms.ReturnValue;
}
static FName NAME_UAudioPanelWidgetInterface_GetIconBrushName = FName(TEXT("GetIconBrushName"));
FName IAudioPanelWidgetInterface::Execute_GetIconBrushName(UObject* O)
{
check(O != NULL);
check(O->GetClass()->ImplementsInterface(UAudioPanelWidgetInterface::StaticClass()));
AudioPanelWidgetInterface_eventGetIconBrushName_Parms Parms;
UFunction* const Func = O->FindFunction(NAME_UAudioPanelWidgetInterface_GetIconBrushName);
if (Func)
{
O->ProcessEvent(Func, &Parms);
}
return Parms.ReturnValue;
}
struct Z_Construct_UFunction_UAudioPanelWidgetInterface_GetIconBrushName_Statics
{
#if WITH_METADATA
static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = {
{ "ModuleRelativePath", "Public/Audio/AudioPanelWidgetInterface.h" },
};
#endif // WITH_METADATA
// ********** Begin Function GetIconBrushName constinit property declarations **********************
static const UECodeGen_Private::FNamePropertyParams NewProp_ReturnValue;
static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[];
// ********** End Function GetIconBrushName constinit property declarations ************************
static const UECodeGen_Private::FFunctionParams FuncParams;
};
// ********** Begin Function GetIconBrushName Property Definitions *********************************
const UECodeGen_Private::FNamePropertyParams Z_Construct_UFunction_UAudioPanelWidgetInterface_GetIconBrushName_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Name, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AudioPanelWidgetInterface_eventGetIconBrushName_Parms, ReturnValue), METADATA_PARAMS(0, nullptr) };
const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UAudioPanelWidgetInterface_GetIconBrushName_Statics::PropPointers[] = {
(const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAudioPanelWidgetInterface_GetIconBrushName_Statics::NewProp_ReturnValue,
};
static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UAudioPanelWidgetInterface_GetIconBrushName_Statics::PropPointers) < 2048);
// ********** End Function GetIconBrushName Property Definitions ***********************************
const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UAudioPanelWidgetInterface_GetIconBrushName_Statics::FuncParams = { { (UObject*(*)())Z_Construct_UClass_UAudioPanelWidgetInterface, nullptr, "GetIconBrushName", Z_Construct_UFunction_UAudioPanelWidgetInterface_GetIconBrushName_Statics::PropPointers,
UE_ARRAY_COUNT(Z_Construct_UFunction_UAudioPanelWidgetInterface_GetIconBrushName_Statics::PropPointers),
sizeof(AudioPanelWidgetInterface_eventGetIconBrushName_Parms),
RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x08020802, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UAudioPanelWidgetInterface_GetIconBrushName_Statics::Function_MetaDataParams), Z_Construct_UFunction_UAudioPanelWidgetInterface_GetIconBrushName_Statics::Function_MetaDataParams)}, };
static_assert(sizeof(AudioPanelWidgetInterface_eventGetIconBrushName_Parms) < MAX_uint16);
UFunction* Z_Construct_UFunction_UAudioPanelWidgetInterface_GetIconBrushName()
{
static UFunction* ReturnFunction = nullptr;
if (!ReturnFunction)
{
UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UAudioPanelWidgetInterface_GetIconBrushName_Statics::FuncParams);
}
return ReturnFunction;
}
// ********** End Interface UAudioPanelWidgetInterface Function GetIconBrushName *******************
// ********** Begin Interface UAudioPanelWidgetInterface *******************************************
FClassRegistrationInfo Z_Registration_Info_UClass_UAudioPanelWidgetInterface;
UClass* UAudioPanelWidgetInterface::GetPrivateStaticClass()
{
using TClass = UAudioPanelWidgetInterface;
if (!Z_Registration_Info_UClass_UAudioPanelWidgetInterface.InnerSingleton)
{
GetPrivateStaticClassBody(
TClass::StaticPackage(),
TEXT("AudioPanelWidgetInterface"),
Z_Registration_Info_UClass_UAudioPanelWidgetInterface.InnerSingleton,
StaticRegisterNativesUAudioPanelWidgetInterface,
sizeof(TClass),
alignof(TClass),
TClass::StaticClassFlags,
TClass::StaticClassCastFlags(),
TClass::StaticConfigName(),
(UClass::ClassConstructorType)InternalConstructor<TClass>,
(UClass::ClassVTableHelperCtorCallerType)InternalVTableHelperCtorCaller<TClass>,
UOBJECT_CPPCLASS_STATICFUNCTIONS_FORCLASS(TClass),
&TClass::Super::StaticClass,
&TClass::WithinClass::StaticClass
);
}
return Z_Registration_Info_UClass_UAudioPanelWidgetInterface.InnerSingleton;
}
UClass* Z_Construct_UClass_UAudioPanelWidgetInterface_NoRegister()
{
return UAudioPanelWidgetInterface::GetPrivateStaticClass();
}
struct Z_Construct_UClass_UAudioPanelWidgetInterface_Statics
{
#if WITH_METADATA
static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = {
{ "ModuleRelativePath", "Public/Audio/AudioPanelWidgetInterface.h" },
};
#endif // WITH_METADATA
// ********** Begin Interface UAudioPanelWidgetInterface constinit property declarations ***********
// ********** End Interface UAudioPanelWidgetInterface constinit property declarations *************
static UObject* (*const DependentSingletons[])();
static constexpr FClassFunctionLinkInfo FuncInfo[] = {
{ &Z_Construct_UFunction_UAudioPanelWidgetInterface_GetEditorName, "GetEditorName" }, // 388260444
{ &Z_Construct_UFunction_UAudioPanelWidgetInterface_GetIconBrushName, "GetIconBrushName" }, // 2001617007
};
static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048);
static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = {
TCppClassTypeTraits<IAudioPanelWidgetInterface>::IsAbstract,
};
static const UECodeGen_Private::FClassParams ClassParams;
}; // struct Z_Construct_UClass_UAudioPanelWidgetInterface_Statics
UObject* (*const Z_Construct_UClass_UAudioPanelWidgetInterface_Statics::DependentSingletons[])() = {
(UObject* (*)())Z_Construct_UClass_UInterface,
(UObject* (*)())Z_Construct_UPackage__Script_Engine,
};
static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UAudioPanelWidgetInterface_Statics::DependentSingletons) < 16);
const UECodeGen_Private::FClassParams Z_Construct_UClass_UAudioPanelWidgetInterface_Statics::ClassParams = {
&UAudioPanelWidgetInterface::StaticClass,
nullptr,
&StaticCppClassTypeInfo,
DependentSingletons,
FuncInfo,
nullptr,
nullptr,
UE_ARRAY_COUNT(DependentSingletons),
UE_ARRAY_COUNT(FuncInfo),
0,
0,
0x000840A1u,
METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UAudioPanelWidgetInterface_Statics::Class_MetaDataParams), Z_Construct_UClass_UAudioPanelWidgetInterface_Statics::Class_MetaDataParams)
};
void UAudioPanelWidgetInterface::StaticRegisterNativesUAudioPanelWidgetInterface()
{
}
UClass* Z_Construct_UClass_UAudioPanelWidgetInterface()
{
if (!Z_Registration_Info_UClass_UAudioPanelWidgetInterface.OuterSingleton)
{
UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UAudioPanelWidgetInterface.OuterSingleton, Z_Construct_UClass_UAudioPanelWidgetInterface_Statics::ClassParams);
}
return Z_Registration_Info_UClass_UAudioPanelWidgetInterface.OuterSingleton;
}
UAudioPanelWidgetInterface::UAudioPanelWidgetInterface(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {}
DEFINE_VTABLE_PTR_HELPER_CTOR_NS(, UAudioPanelWidgetInterface);
// ********** End Interface UAudioPanelWidgetInterface *********************************************
// ********** Begin Registration *******************************************************************
struct Z_CompiledInDeferFile_FID_Engine_Source_Runtime_Engine_Public_Audio_AudioPanelWidgetInterface_h__Script_Engine_Statics
{
static constexpr FClassRegisterCompiledInInfo ClassInfo[] = {
{ Z_Construct_UClass_UAudioPanelWidgetInterface, UAudioPanelWidgetInterface::StaticClass, TEXT("UAudioPanelWidgetInterface"), &Z_Registration_Info_UClass_UAudioPanelWidgetInterface, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UAudioPanelWidgetInterface), 2585483208U) },
};
}; // Z_CompiledInDeferFile_FID_Engine_Source_Runtime_Engine_Public_Audio_AudioPanelWidgetInterface_h__Script_Engine_Statics
static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Engine_Source_Runtime_Engine_Public_Audio_AudioPanelWidgetInterface_h__Script_Engine_99282051{
TEXT("/Script/Engine"),
Z_CompiledInDeferFile_FID_Engine_Source_Runtime_Engine_Public_Audio_AudioPanelWidgetInterface_h__Script_Engine_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Engine_Source_Runtime_Engine_Public_Audio_AudioPanelWidgetInterface_h__Script_Engine_Statics::ClassInfo),
nullptr, 0,
nullptr, 0,
};
// ********** End Registration *********************************************************************
PRAGMA_ENABLE_DEPRECATION_WARNINGS