Initial Commit

This commit is contained in:
Norman Lansing
2026-01-28 19:08:51 -05:00
commit ecb33115bf
54042 changed files with 9695586 additions and 0 deletions

View File

@@ -0,0 +1,803 @@
// 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 "LocationServicesBPLibrary.h"
PRAGMA_DISABLE_DEPRECATION_WARNINGS
static_assert(!UE_WITH_CONSTINIT_UOBJECT, "This generated code can only be compiled with !UE_WITH_CONSTINIT_OBJECT");
void EmptyLinkFunctionForGeneratedCodeLocationServicesBPLibrary() {}
// ********** Begin Cross Module References ********************************************************
ENGINE_API UClass* Z_Construct_UClass_UBlueprintFunctionLibrary();
LOCATIONSERVICESBPLIBRARY_API UClass* Z_Construct_UClass_ULocationServices();
LOCATIONSERVICESBPLIBRARY_API UClass* Z_Construct_UClass_ULocationServices_NoRegister();
LOCATIONSERVICESBPLIBRARY_API UClass* Z_Construct_UClass_ULocationServicesImpl_NoRegister();
LOCATIONSERVICESBPLIBRARY_API UEnum* Z_Construct_UEnum_LocationServicesBPLibrary_ELocationAccuracy();
LOCATIONSERVICESBPLIBRARY_API UFunction* Z_Construct_UDelegateFunction_LocationServicesBPLibrary_LocationServicesData_OnLocationChanged__DelegateSignature();
LOCATIONSERVICESBPLIBRARY_API UScriptStruct* Z_Construct_UScriptStruct_FLocationServicesData();
UPackage* Z_Construct_UPackage__Script_LocationServicesBPLibrary();
// ********** End Cross Module References **********************************************************
// ********** Begin Enum ELocationAccuracy *********************************************************
static FEnumRegistrationInfo Z_Registration_Info_UEnum_ELocationAccuracy;
static UEnum* ELocationAccuracy_StaticEnum()
{
if (!Z_Registration_Info_UEnum_ELocationAccuracy.OuterSingleton)
{
Z_Registration_Info_UEnum_ELocationAccuracy.OuterSingleton = GetStaticEnum(Z_Construct_UEnum_LocationServicesBPLibrary_ELocationAccuracy, (UObject*)Z_Construct_UPackage__Script_LocationServicesBPLibrary(), TEXT("ELocationAccuracy"));
}
return Z_Registration_Info_UEnum_ELocationAccuracy.OuterSingleton;
}
template<> LOCATIONSERVICESBPLIBRARY_NON_ATTRIBUTED_API UEnum* StaticEnum<ELocationAccuracy>()
{
return ELocationAccuracy_StaticEnum();
}
struct Z_Construct_UEnum_LocationServicesBPLibrary_ELocationAccuracy_Statics
{
#if WITH_METADATA
static constexpr UECodeGen_Private::FMetaDataPairParam Enum_MetaDataParams[] = {
{ "BlueprintType", "true" },
{ "Comment", "/*\nEnum used to determine what accuracy the Location Services should be run with. Based off the iOS kCLLocationAccuracy\nenums since those were the most restrictive (but convienently also had descriptive names)\n*/" },
{ "LA_Best.DisplayName", "Best" },
{ "LA_Best.Name", "ELocationAccuracy::LA_Best" },
{ "LA_HundredMeters.DisplayName", "One Hundred Meters" },
{ "LA_HundredMeters.Name", "ELocationAccuracy::LA_HundredMeters" },
{ "LA_Navigation.DisplayName", "Best for Navigation" },
{ "LA_Navigation.Name", "ELocationAccuracy::LA_Navigation" },
{ "LA_OneKilometer.DisplayName", "One Kilometer" },
{ "LA_OneKilometer.Name", "ELocationAccuracy::LA_OneKilometer" },
{ "LA_TenMeters.DisplayName", "Ten Meters" },
{ "LA_TenMeters.Name", "ELocationAccuracy::LA_TenMeters" },
{ "LA_ThreeKilometers.DisplayName", "Three Kilometers" },
{ "LA_ThreeKilometers.Name", "ELocationAccuracy::LA_ThreeKilometers" },
{ "ModuleRelativePath", "Classes/LocationServicesBPLibrary.h" },
{ "ToolTip", "Enum used to determine what accuracy the Location Services should be run with. Based off the iOS kCLLocationAccuracy\nenums since those were the most restrictive (but convienently also had descriptive names)" },
};
#endif // WITH_METADATA
static constexpr UECodeGen_Private::FEnumeratorParam Enumerators[] = {
{ "ELocationAccuracy::LA_ThreeKilometers", (int64)ELocationAccuracy::LA_ThreeKilometers },
{ "ELocationAccuracy::LA_OneKilometer", (int64)ELocationAccuracy::LA_OneKilometer },
{ "ELocationAccuracy::LA_HundredMeters", (int64)ELocationAccuracy::LA_HundredMeters },
{ "ELocationAccuracy::LA_TenMeters", (int64)ELocationAccuracy::LA_TenMeters },
{ "ELocationAccuracy::LA_Best", (int64)ELocationAccuracy::LA_Best },
{ "ELocationAccuracy::LA_Navigation", (int64)ELocationAccuracy::LA_Navigation },
};
static const UECodeGen_Private::FEnumParams EnumParams;
}; // struct Z_Construct_UEnum_LocationServicesBPLibrary_ELocationAccuracy_Statics
const UECodeGen_Private::FEnumParams Z_Construct_UEnum_LocationServicesBPLibrary_ELocationAccuracy_Statics::EnumParams = {
(UObject*(*)())Z_Construct_UPackage__Script_LocationServicesBPLibrary,
nullptr,
"ELocationAccuracy",
"ELocationAccuracy",
Z_Construct_UEnum_LocationServicesBPLibrary_ELocationAccuracy_Statics::Enumerators,
RF_Public|RF_Transient|RF_MarkAsNative,
UE_ARRAY_COUNT(Z_Construct_UEnum_LocationServicesBPLibrary_ELocationAccuracy_Statics::Enumerators),
EEnumFlags::None,
(uint8)UEnum::ECppForm::EnumClass,
METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UEnum_LocationServicesBPLibrary_ELocationAccuracy_Statics::Enum_MetaDataParams), Z_Construct_UEnum_LocationServicesBPLibrary_ELocationAccuracy_Statics::Enum_MetaDataParams)
};
UEnum* Z_Construct_UEnum_LocationServicesBPLibrary_ELocationAccuracy()
{
if (!Z_Registration_Info_UEnum_ELocationAccuracy.InnerSingleton)
{
UECodeGen_Private::ConstructUEnum(Z_Registration_Info_UEnum_ELocationAccuracy.InnerSingleton, Z_Construct_UEnum_LocationServicesBPLibrary_ELocationAccuracy_Statics::EnumParams);
}
return Z_Registration_Info_UEnum_ELocationAccuracy.InnerSingleton;
}
// ********** End Enum ELocationAccuracy ***********************************************************
// ********** Begin ScriptStruct FLocationServicesData *********************************************
struct Z_Construct_UScriptStruct_FLocationServicesData_Statics
{
static inline consteval int32 GetStructSize() { return sizeof(FLocationServicesData); }
static inline consteval int16 GetStructAlignment() { return alignof(FLocationServicesData); }
#if WITH_METADATA
static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = {
{ "BlueprintType", "true" },
{ "Comment", "/*\nStruct to hold relevant location data retrieved from the mobile implementation's Location Service\n*/" },
{ "ModuleRelativePath", "Classes/LocationServicesBPLibrary.h" },
{ "ToolTip", "Struct to hold relevant location data retrieved from the mobile implementation's Location Service" },
};
static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Timestamp_MetaData[] = {
{ "Category", "Location Data Struct" },
{ "Comment", "/* Timestamp from when this location data was taken (UTC time in milliseconds since 1 January 1970) */" },
{ "ModuleRelativePath", "Classes/LocationServicesBPLibrary.h" },
{ "ToolTip", "Timestamp from when this location data was taken (UTC time in milliseconds since 1 January 1970)" },
};
static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Longitude_MetaData[] = {
{ "Category", "Location Data Struct" },
{ "ModuleRelativePath", "Classes/LocationServicesBPLibrary.h" },
};
static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Latitude_MetaData[] = {
{ "Category", "Location Data Struct" },
{ "ModuleRelativePath", "Classes/LocationServicesBPLibrary.h" },
};
static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_HorizontalAccuracy_MetaData[] = {
{ "Category", "Location Data Struct" },
{ "Comment", "/* Estimated horizontal (Android: overall) accuracy of the result, in meters */" },
{ "ModuleRelativePath", "Classes/LocationServicesBPLibrary.h" },
{ "ToolTip", "Estimated horizontal (Android: overall) accuracy of the result, in meters" },
};
static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_VerticalAccuracy_MetaData[] = {
{ "Category", "Location Data Struct" },
{ "Comment", "/* Estimated accuracy of the result, in meters (iOS only) */" },
{ "ModuleRelativePath", "Classes/LocationServicesBPLibrary.h" },
{ "ToolTip", "Estimated accuracy of the result, in meters (iOS only)" },
};
static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Altitude_MetaData[] = {
{ "Category", "Location Data Struct" },
{ "Comment", "/* In meters, if provided with the result */" },
{ "ModuleRelativePath", "Classes/LocationServicesBPLibrary.h" },
{ "ToolTip", "In meters, if provided with the result" },
};
#endif // WITH_METADATA
// ********** Begin ScriptStruct FLocationServicesData constinit property declarations *************
static const UECodeGen_Private::FFloatPropertyParams NewProp_Timestamp;
static const UECodeGen_Private::FFloatPropertyParams NewProp_Longitude;
static const UECodeGen_Private::FFloatPropertyParams NewProp_Latitude;
static const UECodeGen_Private::FFloatPropertyParams NewProp_HorizontalAccuracy;
static const UECodeGen_Private::FFloatPropertyParams NewProp_VerticalAccuracy;
static const UECodeGen_Private::FFloatPropertyParams NewProp_Altitude;
static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[];
// ********** End ScriptStruct FLocationServicesData constinit property declarations ***************
static void* NewStructOps()
{
return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps<FLocationServicesData>();
}
static const UECodeGen_Private::FStructParams StructParams;
}; // struct Z_Construct_UScriptStruct_FLocationServicesData_Statics
static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_FLocationServicesData;
class UScriptStruct* FLocationServicesData::StaticStruct()
{
if (!Z_Registration_Info_UScriptStruct_FLocationServicesData.OuterSingleton)
{
Z_Registration_Info_UScriptStruct_FLocationServicesData.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FLocationServicesData, (UObject*)Z_Construct_UPackage__Script_LocationServicesBPLibrary(), TEXT("LocationServicesData"));
}
return Z_Registration_Info_UScriptStruct_FLocationServicesData.OuterSingleton;
}
// ********** Begin ScriptStruct FLocationServicesData Property Definitions ************************
const UECodeGen_Private::FFloatPropertyParams Z_Construct_UScriptStruct_FLocationServicesData_Statics::NewProp_Timestamp = { "Timestamp", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLocationServicesData, Timestamp), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Timestamp_MetaData), NewProp_Timestamp_MetaData) };
const UECodeGen_Private::FFloatPropertyParams Z_Construct_UScriptStruct_FLocationServicesData_Statics::NewProp_Longitude = { "Longitude", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLocationServicesData, Longitude), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Longitude_MetaData), NewProp_Longitude_MetaData) };
const UECodeGen_Private::FFloatPropertyParams Z_Construct_UScriptStruct_FLocationServicesData_Statics::NewProp_Latitude = { "Latitude", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLocationServicesData, Latitude), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Latitude_MetaData), NewProp_Latitude_MetaData) };
const UECodeGen_Private::FFloatPropertyParams Z_Construct_UScriptStruct_FLocationServicesData_Statics::NewProp_HorizontalAccuracy = { "HorizontalAccuracy", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLocationServicesData, HorizontalAccuracy), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_HorizontalAccuracy_MetaData), NewProp_HorizontalAccuracy_MetaData) };
const UECodeGen_Private::FFloatPropertyParams Z_Construct_UScriptStruct_FLocationServicesData_Statics::NewProp_VerticalAccuracy = { "VerticalAccuracy", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLocationServicesData, VerticalAccuracy), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_VerticalAccuracy_MetaData), NewProp_VerticalAccuracy_MetaData) };
const UECodeGen_Private::FFloatPropertyParams Z_Construct_UScriptStruct_FLocationServicesData_Statics::NewProp_Altitude = { "Altitude", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLocationServicesData, Altitude), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Altitude_MetaData), NewProp_Altitude_MetaData) };
const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FLocationServicesData_Statics::PropPointers[] = {
(const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLocationServicesData_Statics::NewProp_Timestamp,
(const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLocationServicesData_Statics::NewProp_Longitude,
(const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLocationServicesData_Statics::NewProp_Latitude,
(const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLocationServicesData_Statics::NewProp_HorizontalAccuracy,
(const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLocationServicesData_Statics::NewProp_VerticalAccuracy,
(const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLocationServicesData_Statics::NewProp_Altitude,
};
static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLocationServicesData_Statics::PropPointers) < 2048);
// ********** End ScriptStruct FLocationServicesData Property Definitions **************************
const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FLocationServicesData_Statics::StructParams = {
(UObject* (*)())Z_Construct_UPackage__Script_LocationServicesBPLibrary,
nullptr,
&NewStructOps,
"LocationServicesData",
Z_Construct_UScriptStruct_FLocationServicesData_Statics::PropPointers,
UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLocationServicesData_Statics::PropPointers),
sizeof(FLocationServicesData),
alignof(FLocationServicesData),
RF_Public|RF_Transient|RF_MarkAsNative,
EStructFlags(0x00000001),
METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLocationServicesData_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FLocationServicesData_Statics::Struct_MetaDataParams)
};
UScriptStruct* Z_Construct_UScriptStruct_FLocationServicesData()
{
if (!Z_Registration_Info_UScriptStruct_FLocationServicesData.InnerSingleton)
{
UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_FLocationServicesData.InnerSingleton, Z_Construct_UScriptStruct_FLocationServicesData_Statics::StructParams);
}
return CastChecked<UScriptStruct>(Z_Registration_Info_UScriptStruct_FLocationServicesData.InnerSingleton);
}
// ********** End ScriptStruct FLocationServicesData ***********************************************
// ********** Begin Delegate FLocationServicesData_OnLocationChanged *******************************
struct Z_Construct_UDelegateFunction_LocationServicesBPLibrary_LocationServicesData_OnLocationChanged__DelegateSignature_Statics
{
struct _Script_LocationServicesBPLibrary_eventLocationServicesData_OnLocationChanged_Parms
{
FLocationServicesData LocationData;
};
#if WITH_METADATA
static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = {
{ "ModuleRelativePath", "Classes/LocationServicesBPLibrary.h" },
};
#endif // WITH_METADATA
// ********** Begin Delegate FLocationServicesData_OnLocationChanged constinit property declarations
static const UECodeGen_Private::FStructPropertyParams NewProp_LocationData;
static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[];
// ********** End Delegate FLocationServicesData_OnLocationChanged constinit property declarations *
static const UECodeGen_Private::FDelegateFunctionParams FuncParams;
};
// ********** Begin Delegate FLocationServicesData_OnLocationChanged Property Definitions **********
const UECodeGen_Private::FStructPropertyParams Z_Construct_UDelegateFunction_LocationServicesBPLibrary_LocationServicesData_OnLocationChanged__DelegateSignature_Statics::NewProp_LocationData = { "LocationData", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(_Script_LocationServicesBPLibrary_eventLocationServicesData_OnLocationChanged_Parms, LocationData), Z_Construct_UScriptStruct_FLocationServicesData, METADATA_PARAMS(0, nullptr) }; // 480761888
const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UDelegateFunction_LocationServicesBPLibrary_LocationServicesData_OnLocationChanged__DelegateSignature_Statics::PropPointers[] = {
(const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_LocationServicesBPLibrary_LocationServicesData_OnLocationChanged__DelegateSignature_Statics::NewProp_LocationData,
};
static_assert(UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_LocationServicesBPLibrary_LocationServicesData_OnLocationChanged__DelegateSignature_Statics::PropPointers) < 2048);
// ********** End Delegate FLocationServicesData_OnLocationChanged Property Definitions ************
const UECodeGen_Private::FDelegateFunctionParams Z_Construct_UDelegateFunction_LocationServicesBPLibrary_LocationServicesData_OnLocationChanged__DelegateSignature_Statics::FuncParams = { { (UObject*(*)())Z_Construct_UPackage__Script_LocationServicesBPLibrary, nullptr, "LocationServicesData_OnLocationChanged__DelegateSignature", Z_Construct_UDelegateFunction_LocationServicesBPLibrary_LocationServicesData_OnLocationChanged__DelegateSignature_Statics::PropPointers,
UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_LocationServicesBPLibrary_LocationServicesData_OnLocationChanged__DelegateSignature_Statics::PropPointers),
sizeof(Z_Construct_UDelegateFunction_LocationServicesBPLibrary_LocationServicesData_OnLocationChanged__DelegateSignature_Statics::_Script_LocationServicesBPLibrary_eventLocationServicesData_OnLocationChanged_Parms),
RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00130000, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_LocationServicesBPLibrary_LocationServicesData_OnLocationChanged__DelegateSignature_Statics::Function_MetaDataParams), Z_Construct_UDelegateFunction_LocationServicesBPLibrary_LocationServicesData_OnLocationChanged__DelegateSignature_Statics::Function_MetaDataParams)}, };
static_assert(sizeof(Z_Construct_UDelegateFunction_LocationServicesBPLibrary_LocationServicesData_OnLocationChanged__DelegateSignature_Statics::_Script_LocationServicesBPLibrary_eventLocationServicesData_OnLocationChanged_Parms) < MAX_uint16);
UFunction* Z_Construct_UDelegateFunction_LocationServicesBPLibrary_LocationServicesData_OnLocationChanged__DelegateSignature()
{
static UFunction* ReturnFunction = nullptr;
if (!ReturnFunction)
{
UECodeGen_Private::ConstructUDelegateFunction(&ReturnFunction, Z_Construct_UDelegateFunction_LocationServicesBPLibrary_LocationServicesData_OnLocationChanged__DelegateSignature_Statics::FuncParams);
}
return ReturnFunction;
}
void FLocationServicesData_OnLocationChanged_DelegateWrapper(const FMulticastScriptDelegate& LocationServicesData_OnLocationChanged, FLocationServicesData LocationData)
{
struct _Script_LocationServicesBPLibrary_eventLocationServicesData_OnLocationChanged_Parms
{
FLocationServicesData LocationData;
};
_Script_LocationServicesBPLibrary_eventLocationServicesData_OnLocationChanged_Parms Parms;
Parms.LocationData=LocationData;
LocationServicesData_OnLocationChanged.ProcessMulticastDelegate<UObject>(&Parms);
}
// ********** End Delegate FLocationServicesData_OnLocationChanged *********************************
// ********** Begin Class ULocationServices Function AreLocationServicesEnabled ********************
struct Z_Construct_UFunction_ULocationServices_AreLocationServicesEnabled_Statics
{
struct LocationServices_eventAreLocationServicesEnabled_Parms
{
bool ReturnValue;
};
#if WITH_METADATA
static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = {
{ "Category", "Services|Mobile|Location" },
{ "Comment", "/**\n\x09* Checks if the Location Services on the mobile device are enabled for this application\n\x09* @return - true if the mobile device has enabled the appropriate service for the app \n\x09*/" },
{ "ModuleRelativePath", "Classes/LocationServicesBPLibrary.h" },
{ "ToolTip", "Checks if the Location Services on the mobile device are enabled for this application\n@return - true if the mobile device has enabled the appropriate service for the app" },
};
#endif // WITH_METADATA
// ********** Begin Function AreLocationServicesEnabled constinit property declarations ************
static void NewProp_ReturnValue_SetBit(void* Obj);
static const UECodeGen_Private::FBoolPropertyParams NewProp_ReturnValue;
static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[];
// ********** End Function AreLocationServicesEnabled constinit property declarations **************
static const UECodeGen_Private::FFunctionParams FuncParams;
};
// ********** Begin Function AreLocationServicesEnabled Property Definitions ***********************
void Z_Construct_UFunction_ULocationServices_AreLocationServicesEnabled_Statics::NewProp_ReturnValue_SetBit(void* Obj)
{
((LocationServices_eventAreLocationServicesEnabled_Parms*)Obj)->ReturnValue = 1;
}
const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ULocationServices_AreLocationServicesEnabled_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LocationServices_eventAreLocationServicesEnabled_Parms), &Z_Construct_UFunction_ULocationServices_AreLocationServicesEnabled_Statics::NewProp_ReturnValue_SetBit, METADATA_PARAMS(0, nullptr) };
const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULocationServices_AreLocationServicesEnabled_Statics::PropPointers[] = {
(const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULocationServices_AreLocationServicesEnabled_Statics::NewProp_ReturnValue,
};
static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULocationServices_AreLocationServicesEnabled_Statics::PropPointers) < 2048);
// ********** End Function AreLocationServicesEnabled Property Definitions *************************
const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULocationServices_AreLocationServicesEnabled_Statics::FuncParams = { { (UObject*(*)())Z_Construct_UClass_ULocationServices, nullptr, "AreLocationServicesEnabled", Z_Construct_UFunction_ULocationServices_AreLocationServicesEnabled_Statics::PropPointers,
UE_ARRAY_COUNT(Z_Construct_UFunction_ULocationServices_AreLocationServicesEnabled_Statics::PropPointers),
sizeof(Z_Construct_UFunction_ULocationServices_AreLocationServicesEnabled_Statics::LocationServices_eventAreLocationServicesEnabled_Parms),
RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04022403, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULocationServices_AreLocationServicesEnabled_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULocationServices_AreLocationServicesEnabled_Statics::Function_MetaDataParams)}, };
static_assert(sizeof(Z_Construct_UFunction_ULocationServices_AreLocationServicesEnabled_Statics::LocationServices_eventAreLocationServicesEnabled_Parms) < MAX_uint16);
UFunction* Z_Construct_UFunction_ULocationServices_AreLocationServicesEnabled()
{
static UFunction* ReturnFunction = nullptr;
if (!ReturnFunction)
{
UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULocationServices_AreLocationServicesEnabled_Statics::FuncParams);
}
return ReturnFunction;
}
DEFINE_FUNCTION(ULocationServices::execAreLocationServicesEnabled)
{
P_FINISH;
P_NATIVE_BEGIN;
*(bool*)Z_Param__Result=ULocationServices::AreLocationServicesEnabled();
P_NATIVE_END;
}
// ********** End Class ULocationServices Function AreLocationServicesEnabled **********************
// ********** Begin Class ULocationServices Function GetLastKnownLocation **************************
struct Z_Construct_UFunction_ULocationServices_GetLastKnownLocation_Statics
{
struct LocationServices_eventGetLastKnownLocation_Parms
{
FLocationServicesData ReturnValue;
};
#if WITH_METADATA
static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = {
{ "Category", "Services|Mobile|Location" },
{ "Comment", "/**\n\x09* Returns the last location information returned by the location service. If no location update has been made, will return\n\x09* a default-value-filled struct. \n\x09* @return - the last known location from updates \n\x09*/" },
{ "ModuleRelativePath", "Classes/LocationServicesBPLibrary.h" },
{ "ToolTip", "Returns the last location information returned by the location service. If no location update has been made, will return\na default-value-filled struct.\n@return - the last known location from updates" },
};
#endif // WITH_METADATA
// ********** Begin Function GetLastKnownLocation constinit property declarations ******************
static const UECodeGen_Private::FStructPropertyParams NewProp_ReturnValue;
static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[];
// ********** End Function GetLastKnownLocation constinit property declarations ********************
static const UECodeGen_Private::FFunctionParams FuncParams;
};
// ********** Begin Function GetLastKnownLocation Property Definitions *****************************
const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULocationServices_GetLastKnownLocation_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LocationServices_eventGetLastKnownLocation_Parms, ReturnValue), Z_Construct_UScriptStruct_FLocationServicesData, METADATA_PARAMS(0, nullptr) }; // 480761888
const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULocationServices_GetLastKnownLocation_Statics::PropPointers[] = {
(const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULocationServices_GetLastKnownLocation_Statics::NewProp_ReturnValue,
};
static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULocationServices_GetLastKnownLocation_Statics::PropPointers) < 2048);
// ********** End Function GetLastKnownLocation Property Definitions *******************************
const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULocationServices_GetLastKnownLocation_Statics::FuncParams = { { (UObject*(*)())Z_Construct_UClass_ULocationServices, nullptr, "GetLastKnownLocation", Z_Construct_UFunction_ULocationServices_GetLastKnownLocation_Statics::PropPointers,
UE_ARRAY_COUNT(Z_Construct_UFunction_ULocationServices_GetLastKnownLocation_Statics::PropPointers),
sizeof(Z_Construct_UFunction_ULocationServices_GetLastKnownLocation_Statics::LocationServices_eventGetLastKnownLocation_Parms),
RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04022403, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULocationServices_GetLastKnownLocation_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULocationServices_GetLastKnownLocation_Statics::Function_MetaDataParams)}, };
static_assert(sizeof(Z_Construct_UFunction_ULocationServices_GetLastKnownLocation_Statics::LocationServices_eventGetLastKnownLocation_Parms) < MAX_uint16);
UFunction* Z_Construct_UFunction_ULocationServices_GetLastKnownLocation()
{
static UFunction* ReturnFunction = nullptr;
if (!ReturnFunction)
{
UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULocationServices_GetLastKnownLocation_Statics::FuncParams);
}
return ReturnFunction;
}
DEFINE_FUNCTION(ULocationServices::execGetLastKnownLocation)
{
P_FINISH;
P_NATIVE_BEGIN;
*(FLocationServicesData*)Z_Param__Result=ULocationServices::GetLastKnownLocation();
P_NATIVE_END;
}
// ********** End Class ULocationServices Function GetLastKnownLocation ****************************
// ********** Begin Class ULocationServices Function GetLocationServicesImpl ***********************
struct Z_Construct_UFunction_ULocationServices_GetLocationServicesImpl_Statics
{
struct LocationServices_eventGetLocationServicesImpl_Parms
{
ULocationServicesImpl* ReturnValue;
};
#if WITH_METADATA
static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = {
{ "Category", "Services|Mobile|Location" },
{ "Comment", "/*\n\x09* Returns the Location Services implementation object. Intended to be used to set up the FLocationServicesData_OnLocationChanged\n\x09* delegate in Blueprints.\n\x09* @return - the Android or IOS impl object\n\x09*/" },
{ "ModuleRelativePath", "Classes/LocationServicesBPLibrary.h" },
{ "ToolTip", "* Returns the Location Services implementation object. Intended to be used to set up the FLocationServicesData_OnLocationChanged\n* delegate in Blueprints.\n* @return - the Android or IOS impl object" },
};
#endif // WITH_METADATA
// ********** Begin Function GetLocationServicesImpl constinit property declarations ***************
static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue;
static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[];
// ********** End Function GetLocationServicesImpl constinit property declarations *****************
static const UECodeGen_Private::FFunctionParams FuncParams;
};
// ********** Begin Function GetLocationServicesImpl Property Definitions **************************
const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULocationServices_GetLocationServicesImpl_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LocationServices_eventGetLocationServicesImpl_Parms, ReturnValue), Z_Construct_UClass_ULocationServicesImpl_NoRegister, METADATA_PARAMS(0, nullptr) };
const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULocationServices_GetLocationServicesImpl_Statics::PropPointers[] = {
(const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULocationServices_GetLocationServicesImpl_Statics::NewProp_ReturnValue,
};
static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULocationServices_GetLocationServicesImpl_Statics::PropPointers) < 2048);
// ********** End Function GetLocationServicesImpl Property Definitions ****************************
const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULocationServices_GetLocationServicesImpl_Statics::FuncParams = { { (UObject*(*)())Z_Construct_UClass_ULocationServices, nullptr, "GetLocationServicesImpl", Z_Construct_UFunction_ULocationServices_GetLocationServicesImpl_Statics::PropPointers,
UE_ARRAY_COUNT(Z_Construct_UFunction_ULocationServices_GetLocationServicesImpl_Statics::PropPointers),
sizeof(Z_Construct_UFunction_ULocationServices_GetLocationServicesImpl_Statics::LocationServices_eventGetLocationServicesImpl_Parms),
RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04022401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULocationServices_GetLocationServicesImpl_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULocationServices_GetLocationServicesImpl_Statics::Function_MetaDataParams)}, };
static_assert(sizeof(Z_Construct_UFunction_ULocationServices_GetLocationServicesImpl_Statics::LocationServices_eventGetLocationServicesImpl_Parms) < MAX_uint16);
UFunction* Z_Construct_UFunction_ULocationServices_GetLocationServicesImpl()
{
static UFunction* ReturnFunction = nullptr;
if (!ReturnFunction)
{
UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULocationServices_GetLocationServicesImpl_Statics::FuncParams);
}
return ReturnFunction;
}
DEFINE_FUNCTION(ULocationServices::execGetLocationServicesImpl)
{
P_FINISH;
P_NATIVE_BEGIN;
*(ULocationServicesImpl**)Z_Param__Result=ULocationServices::GetLocationServicesImpl();
P_NATIVE_END;
}
// ********** End Class ULocationServices Function GetLocationServicesImpl *************************
// ********** Begin Class ULocationServices Function InitLocationServices **************************
struct Z_Construct_UFunction_ULocationServices_InitLocationServices_Statics
{
struct LocationServices_eventInitLocationServices_Parms
{
ELocationAccuracy Accuracy;
float UpdateFrequency;
float MinDistanceFilter;
bool ReturnValue;
};
#if WITH_METADATA
static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = {
{ "Category", "Services|Mobile|Location" },
{ "Comment", "/** \n\x09 * Called to set up the Location Service before use\n\x09 * \n\x09 * @param Accuracy - as seen in the enum above\n\x09 * @param UpdateFrequency - in milliseconds. (Android only)\n\x09 * @param MinDistance - minDistance before a location update, in meters. 0 here means \"update asap\"\n\x09 * @return - true if Initialization was succesful\n\x09 */" },
{ "ModuleRelativePath", "Classes/LocationServicesBPLibrary.h" },
{ "ToolTip", "Called to set up the Location Service before use\n\n@param Accuracy - as seen in the enum above\n@param UpdateFrequency - in milliseconds. (Android only)\n@param MinDistance - minDistance before a location update, in meters. 0 here means \"update asap\"\n@return - true if Initialization was succesful" },
};
#endif // WITH_METADATA
// ********** Begin Function InitLocationServices constinit property declarations ******************
static const UECodeGen_Private::FBytePropertyParams NewProp_Accuracy_Underlying;
static const UECodeGen_Private::FEnumPropertyParams NewProp_Accuracy;
static const UECodeGen_Private::FFloatPropertyParams NewProp_UpdateFrequency;
static const UECodeGen_Private::FFloatPropertyParams NewProp_MinDistanceFilter;
static void NewProp_ReturnValue_SetBit(void* Obj);
static const UECodeGen_Private::FBoolPropertyParams NewProp_ReturnValue;
static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[];
// ********** End Function InitLocationServices constinit property declarations ********************
static const UECodeGen_Private::FFunctionParams FuncParams;
};
// ********** Begin Function InitLocationServices Property Definitions *****************************
const UECodeGen_Private::FBytePropertyParams Z_Construct_UFunction_ULocationServices_InitLocationServices_Statics::NewProp_Accuracy_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) };
const UECodeGen_Private::FEnumPropertyParams Z_Construct_UFunction_ULocationServices_InitLocationServices_Statics::NewProp_Accuracy = { "Accuracy", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LocationServices_eventInitLocationServices_Parms, Accuracy), Z_Construct_UEnum_LocationServicesBPLibrary_ELocationAccuracy, METADATA_PARAMS(0, nullptr) }; // 1158894013
const UECodeGen_Private::FFloatPropertyParams Z_Construct_UFunction_ULocationServices_InitLocationServices_Statics::NewProp_UpdateFrequency = { "UpdateFrequency", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LocationServices_eventInitLocationServices_Parms, UpdateFrequency), METADATA_PARAMS(0, nullptr) };
const UECodeGen_Private::FFloatPropertyParams Z_Construct_UFunction_ULocationServices_InitLocationServices_Statics::NewProp_MinDistanceFilter = { "MinDistanceFilter", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LocationServices_eventInitLocationServices_Parms, MinDistanceFilter), METADATA_PARAMS(0, nullptr) };
void Z_Construct_UFunction_ULocationServices_InitLocationServices_Statics::NewProp_ReturnValue_SetBit(void* Obj)
{
((LocationServices_eventInitLocationServices_Parms*)Obj)->ReturnValue = 1;
}
const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ULocationServices_InitLocationServices_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LocationServices_eventInitLocationServices_Parms), &Z_Construct_UFunction_ULocationServices_InitLocationServices_Statics::NewProp_ReturnValue_SetBit, METADATA_PARAMS(0, nullptr) };
const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULocationServices_InitLocationServices_Statics::PropPointers[] = {
(const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULocationServices_InitLocationServices_Statics::NewProp_Accuracy_Underlying,
(const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULocationServices_InitLocationServices_Statics::NewProp_Accuracy,
(const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULocationServices_InitLocationServices_Statics::NewProp_UpdateFrequency,
(const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULocationServices_InitLocationServices_Statics::NewProp_MinDistanceFilter,
(const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULocationServices_InitLocationServices_Statics::NewProp_ReturnValue,
};
static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULocationServices_InitLocationServices_Statics::PropPointers) < 2048);
// ********** End Function InitLocationServices Property Definitions *******************************
const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULocationServices_InitLocationServices_Statics::FuncParams = { { (UObject*(*)())Z_Construct_UClass_ULocationServices, nullptr, "InitLocationServices", Z_Construct_UFunction_ULocationServices_InitLocationServices_Statics::PropPointers,
UE_ARRAY_COUNT(Z_Construct_UFunction_ULocationServices_InitLocationServices_Statics::PropPointers),
sizeof(Z_Construct_UFunction_ULocationServices_InitLocationServices_Statics::LocationServices_eventInitLocationServices_Parms),
RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04022403, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULocationServices_InitLocationServices_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULocationServices_InitLocationServices_Statics::Function_MetaDataParams)}, };
static_assert(sizeof(Z_Construct_UFunction_ULocationServices_InitLocationServices_Statics::LocationServices_eventInitLocationServices_Parms) < MAX_uint16);
UFunction* Z_Construct_UFunction_ULocationServices_InitLocationServices()
{
static UFunction* ReturnFunction = nullptr;
if (!ReturnFunction)
{
UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULocationServices_InitLocationServices_Statics::FuncParams);
}
return ReturnFunction;
}
DEFINE_FUNCTION(ULocationServices::execInitLocationServices)
{
P_GET_ENUM(ELocationAccuracy,Z_Param_Accuracy);
P_GET_PROPERTY(FFloatProperty,Z_Param_UpdateFrequency);
P_GET_PROPERTY(FFloatProperty,Z_Param_MinDistanceFilter);
P_FINISH;
P_NATIVE_BEGIN;
*(bool*)Z_Param__Result=ULocationServices::InitLocationServices(ELocationAccuracy(Z_Param_Accuracy),Z_Param_UpdateFrequency,Z_Param_MinDistanceFilter);
P_NATIVE_END;
}
// ********** End Class ULocationServices Function InitLocationServices ****************************
// ********** Begin Class ULocationServices Function IsLocationAccuracyAvailable *******************
struct Z_Construct_UFunction_ULocationServices_IsLocationAccuracyAvailable_Statics
{
struct LocationServices_eventIsLocationAccuracyAvailable_Parms
{
ELocationAccuracy Accuracy;
bool ReturnValue;
};
#if WITH_METADATA
static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = {
{ "Category", "Services|Mobile|Location" },
{ "Comment", "/**\n\x09* Checks if the supplied Accuracy is available on the current device.\n\x09* @param Accuracy - the accuracy to check\n\x09* @return - true if the mobile device can support the Accuracy, false if it will use a different accuracy\n\x09*/" },
{ "ModuleRelativePath", "Classes/LocationServicesBPLibrary.h" },
{ "ToolTip", "Checks if the supplied Accuracy is available on the current device.\n@param Accuracy - the accuracy to check\n@return - true if the mobile device can support the Accuracy, false if it will use a different accuracy" },
};
#endif // WITH_METADATA
// ********** Begin Function IsLocationAccuracyAvailable constinit property declarations ***********
static const UECodeGen_Private::FBytePropertyParams NewProp_Accuracy_Underlying;
static const UECodeGen_Private::FEnumPropertyParams NewProp_Accuracy;
static void NewProp_ReturnValue_SetBit(void* Obj);
static const UECodeGen_Private::FBoolPropertyParams NewProp_ReturnValue;
static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[];
// ********** End Function IsLocationAccuracyAvailable constinit property declarations *************
static const UECodeGen_Private::FFunctionParams FuncParams;
};
// ********** Begin Function IsLocationAccuracyAvailable Property Definitions **********************
const UECodeGen_Private::FBytePropertyParams Z_Construct_UFunction_ULocationServices_IsLocationAccuracyAvailable_Statics::NewProp_Accuracy_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) };
const UECodeGen_Private::FEnumPropertyParams Z_Construct_UFunction_ULocationServices_IsLocationAccuracyAvailable_Statics::NewProp_Accuracy = { "Accuracy", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LocationServices_eventIsLocationAccuracyAvailable_Parms, Accuracy), Z_Construct_UEnum_LocationServicesBPLibrary_ELocationAccuracy, METADATA_PARAMS(0, nullptr) }; // 1158894013
void Z_Construct_UFunction_ULocationServices_IsLocationAccuracyAvailable_Statics::NewProp_ReturnValue_SetBit(void* Obj)
{
((LocationServices_eventIsLocationAccuracyAvailable_Parms*)Obj)->ReturnValue = 1;
}
const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ULocationServices_IsLocationAccuracyAvailable_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LocationServices_eventIsLocationAccuracyAvailable_Parms), &Z_Construct_UFunction_ULocationServices_IsLocationAccuracyAvailable_Statics::NewProp_ReturnValue_SetBit, METADATA_PARAMS(0, nullptr) };
const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULocationServices_IsLocationAccuracyAvailable_Statics::PropPointers[] = {
(const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULocationServices_IsLocationAccuracyAvailable_Statics::NewProp_Accuracy_Underlying,
(const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULocationServices_IsLocationAccuracyAvailable_Statics::NewProp_Accuracy,
(const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULocationServices_IsLocationAccuracyAvailable_Statics::NewProp_ReturnValue,
};
static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULocationServices_IsLocationAccuracyAvailable_Statics::PropPointers) < 2048);
// ********** End Function IsLocationAccuracyAvailable Property Definitions ************************
const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULocationServices_IsLocationAccuracyAvailable_Statics::FuncParams = { { (UObject*(*)())Z_Construct_UClass_ULocationServices, nullptr, "IsLocationAccuracyAvailable", Z_Construct_UFunction_ULocationServices_IsLocationAccuracyAvailable_Statics::PropPointers,
UE_ARRAY_COUNT(Z_Construct_UFunction_ULocationServices_IsLocationAccuracyAvailable_Statics::PropPointers),
sizeof(Z_Construct_UFunction_ULocationServices_IsLocationAccuracyAvailable_Statics::LocationServices_eventIsLocationAccuracyAvailable_Parms),
RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04022403, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULocationServices_IsLocationAccuracyAvailable_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULocationServices_IsLocationAccuracyAvailable_Statics::Function_MetaDataParams)}, };
static_assert(sizeof(Z_Construct_UFunction_ULocationServices_IsLocationAccuracyAvailable_Statics::LocationServices_eventIsLocationAccuracyAvailable_Parms) < MAX_uint16);
UFunction* Z_Construct_UFunction_ULocationServices_IsLocationAccuracyAvailable()
{
static UFunction* ReturnFunction = nullptr;
if (!ReturnFunction)
{
UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULocationServices_IsLocationAccuracyAvailable_Statics::FuncParams);
}
return ReturnFunction;
}
DEFINE_FUNCTION(ULocationServices::execIsLocationAccuracyAvailable)
{
P_GET_ENUM(ELocationAccuracy,Z_Param_Accuracy);
P_FINISH;
P_NATIVE_BEGIN;
*(bool*)Z_Param__Result=ULocationServices::IsLocationAccuracyAvailable(ELocationAccuracy(Z_Param_Accuracy));
P_NATIVE_END;
}
// ********** End Class ULocationServices Function IsLocationAccuracyAvailable *********************
// ********** Begin Class ULocationServices Function StartLocationServices *************************
struct Z_Construct_UFunction_ULocationServices_StartLocationServices_Statics
{
struct LocationServices_eventStartLocationServices_Parms
{
bool ReturnValue;
};
#if WITH_METADATA
static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = {
{ "Category", "Services|Mobile|Location" },
{ "Comment", "/** \n\x09 * Starts requesting location updates from the appropriate Location Service\n\x09 * @return - true if startup successful\n\x09 */" },
{ "ModuleRelativePath", "Classes/LocationServicesBPLibrary.h" },
{ "ToolTip", "Starts requesting location updates from the appropriate Location Service\n@return - true if startup successful" },
};
#endif // WITH_METADATA
// ********** Begin Function StartLocationServices constinit property declarations *****************
static void NewProp_ReturnValue_SetBit(void* Obj);
static const UECodeGen_Private::FBoolPropertyParams NewProp_ReturnValue;
static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[];
// ********** End Function StartLocationServices constinit property declarations *******************
static const UECodeGen_Private::FFunctionParams FuncParams;
};
// ********** Begin Function StartLocationServices Property Definitions ****************************
void Z_Construct_UFunction_ULocationServices_StartLocationServices_Statics::NewProp_ReturnValue_SetBit(void* Obj)
{
((LocationServices_eventStartLocationServices_Parms*)Obj)->ReturnValue = 1;
}
const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ULocationServices_StartLocationServices_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LocationServices_eventStartLocationServices_Parms), &Z_Construct_UFunction_ULocationServices_StartLocationServices_Statics::NewProp_ReturnValue_SetBit, METADATA_PARAMS(0, nullptr) };
const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULocationServices_StartLocationServices_Statics::PropPointers[] = {
(const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULocationServices_StartLocationServices_Statics::NewProp_ReturnValue,
};
static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULocationServices_StartLocationServices_Statics::PropPointers) < 2048);
// ********** End Function StartLocationServices Property Definitions ******************************
const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULocationServices_StartLocationServices_Statics::FuncParams = { { (UObject*(*)())Z_Construct_UClass_ULocationServices, nullptr, "StartLocationServices", Z_Construct_UFunction_ULocationServices_StartLocationServices_Statics::PropPointers,
UE_ARRAY_COUNT(Z_Construct_UFunction_ULocationServices_StartLocationServices_Statics::PropPointers),
sizeof(Z_Construct_UFunction_ULocationServices_StartLocationServices_Statics::LocationServices_eventStartLocationServices_Parms),
RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04022403, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULocationServices_StartLocationServices_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULocationServices_StartLocationServices_Statics::Function_MetaDataParams)}, };
static_assert(sizeof(Z_Construct_UFunction_ULocationServices_StartLocationServices_Statics::LocationServices_eventStartLocationServices_Parms) < MAX_uint16);
UFunction* Z_Construct_UFunction_ULocationServices_StartLocationServices()
{
static UFunction* ReturnFunction = nullptr;
if (!ReturnFunction)
{
UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULocationServices_StartLocationServices_Statics::FuncParams);
}
return ReturnFunction;
}
DEFINE_FUNCTION(ULocationServices::execStartLocationServices)
{
P_FINISH;
P_NATIVE_BEGIN;
*(bool*)Z_Param__Result=ULocationServices::StartLocationServices();
P_NATIVE_END;
}
// ********** End Class ULocationServices Function StartLocationServices ***************************
// ********** Begin Class ULocationServices Function StopLocationServices **************************
struct Z_Construct_UFunction_ULocationServices_StopLocationServices_Statics
{
struct LocationServices_eventStopLocationServices_Parms
{
bool ReturnValue;
};
#if WITH_METADATA
static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = {
{ "Category", "Services|Mobile|Location" },
{ "Comment", "/** \n\x09* Stops the updates of location from the Location Service that was started with StartLocationService\n\x09* @return - true if stop is successful\n\x09*/" },
{ "ModuleRelativePath", "Classes/LocationServicesBPLibrary.h" },
{ "ToolTip", "Stops the updates of location from the Location Service that was started with StartLocationService\n@return - true if stop is successful" },
};
#endif // WITH_METADATA
// ********** Begin Function StopLocationServices constinit property declarations ******************
static void NewProp_ReturnValue_SetBit(void* Obj);
static const UECodeGen_Private::FBoolPropertyParams NewProp_ReturnValue;
static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[];
// ********** End Function StopLocationServices constinit property declarations ********************
static const UECodeGen_Private::FFunctionParams FuncParams;
};
// ********** Begin Function StopLocationServices Property Definitions *****************************
void Z_Construct_UFunction_ULocationServices_StopLocationServices_Statics::NewProp_ReturnValue_SetBit(void* Obj)
{
((LocationServices_eventStopLocationServices_Parms*)Obj)->ReturnValue = 1;
}
const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ULocationServices_StopLocationServices_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LocationServices_eventStopLocationServices_Parms), &Z_Construct_UFunction_ULocationServices_StopLocationServices_Statics::NewProp_ReturnValue_SetBit, METADATA_PARAMS(0, nullptr) };
const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULocationServices_StopLocationServices_Statics::PropPointers[] = {
(const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULocationServices_StopLocationServices_Statics::NewProp_ReturnValue,
};
static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULocationServices_StopLocationServices_Statics::PropPointers) < 2048);
// ********** End Function StopLocationServices Property Definitions *******************************
const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULocationServices_StopLocationServices_Statics::FuncParams = { { (UObject*(*)())Z_Construct_UClass_ULocationServices, nullptr, "StopLocationServices", Z_Construct_UFunction_ULocationServices_StopLocationServices_Statics::PropPointers,
UE_ARRAY_COUNT(Z_Construct_UFunction_ULocationServices_StopLocationServices_Statics::PropPointers),
sizeof(Z_Construct_UFunction_ULocationServices_StopLocationServices_Statics::LocationServices_eventStopLocationServices_Parms),
RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04022403, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULocationServices_StopLocationServices_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULocationServices_StopLocationServices_Statics::Function_MetaDataParams)}, };
static_assert(sizeof(Z_Construct_UFunction_ULocationServices_StopLocationServices_Statics::LocationServices_eventStopLocationServices_Parms) < MAX_uint16);
UFunction* Z_Construct_UFunction_ULocationServices_StopLocationServices()
{
static UFunction* ReturnFunction = nullptr;
if (!ReturnFunction)
{
UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULocationServices_StopLocationServices_Statics::FuncParams);
}
return ReturnFunction;
}
DEFINE_FUNCTION(ULocationServices::execStopLocationServices)
{
P_FINISH;
P_NATIVE_BEGIN;
*(bool*)Z_Param__Result=ULocationServices::StopLocationServices();
P_NATIVE_END;
}
// ********** End Class ULocationServices Function StopLocationServices ****************************
// ********** Begin Class ULocationServices ********************************************************
FClassRegistrationInfo Z_Registration_Info_UClass_ULocationServices;
UClass* ULocationServices::GetPrivateStaticClass()
{
using TClass = ULocationServices;
if (!Z_Registration_Info_UClass_ULocationServices.InnerSingleton)
{
GetPrivateStaticClassBody(
TClass::StaticPackage(),
TEXT("LocationServices"),
Z_Registration_Info_UClass_ULocationServices.InnerSingleton,
StaticRegisterNativesULocationServices,
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_ULocationServices.InnerSingleton;
}
UClass* Z_Construct_UClass_ULocationServices_NoRegister()
{
return ULocationServices::GetPrivateStaticClass();
}
struct Z_Construct_UClass_ULocationServices_Statics
{
#if WITH_METADATA
static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = {
{ "IncludePath", "LocationServicesBPLibrary.h" },
{ "ModuleRelativePath", "Classes/LocationServicesBPLibrary.h" },
};
#endif // WITH_METADATA
// ********** Begin Class ULocationServices constinit property declarations ************************
// ********** End Class ULocationServices constinit property declarations **************************
static constexpr UE::CodeGen::FClassNativeFunction Funcs[] = {
{ .NameUTF8 = UTF8TEXT("AreLocationServicesEnabled"), .Pointer = &ULocationServices::execAreLocationServicesEnabled },
{ .NameUTF8 = UTF8TEXT("GetLastKnownLocation"), .Pointer = &ULocationServices::execGetLastKnownLocation },
{ .NameUTF8 = UTF8TEXT("GetLocationServicesImpl"), .Pointer = &ULocationServices::execGetLocationServicesImpl },
{ .NameUTF8 = UTF8TEXT("InitLocationServices"), .Pointer = &ULocationServices::execInitLocationServices },
{ .NameUTF8 = UTF8TEXT("IsLocationAccuracyAvailable"), .Pointer = &ULocationServices::execIsLocationAccuracyAvailable },
{ .NameUTF8 = UTF8TEXT("StartLocationServices"), .Pointer = &ULocationServices::execStartLocationServices },
{ .NameUTF8 = UTF8TEXT("StopLocationServices"), .Pointer = &ULocationServices::execStopLocationServices },
};
static UObject* (*const DependentSingletons[])();
static constexpr FClassFunctionLinkInfo FuncInfo[] = {
{ &Z_Construct_UFunction_ULocationServices_AreLocationServicesEnabled, "AreLocationServicesEnabled" }, // 3201077542
{ &Z_Construct_UFunction_ULocationServices_GetLastKnownLocation, "GetLastKnownLocation" }, // 574762792
{ &Z_Construct_UFunction_ULocationServices_GetLocationServicesImpl, "GetLocationServicesImpl" }, // 3669475938
{ &Z_Construct_UFunction_ULocationServices_InitLocationServices, "InitLocationServices" }, // 537808734
{ &Z_Construct_UFunction_ULocationServices_IsLocationAccuracyAvailable, "IsLocationAccuracyAvailable" }, // 619369886
{ &Z_Construct_UFunction_ULocationServices_StartLocationServices, "StartLocationServices" }, // 982996355
{ &Z_Construct_UFunction_ULocationServices_StopLocationServices, "StopLocationServices" }, // 944321295
};
static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048);
static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = {
TCppClassTypeTraits<ULocationServices>::IsAbstract,
};
static const UECodeGen_Private::FClassParams ClassParams;
}; // struct Z_Construct_UClass_ULocationServices_Statics
UObject* (*const Z_Construct_UClass_ULocationServices_Statics::DependentSingletons[])() = {
(UObject* (*)())Z_Construct_UClass_UBlueprintFunctionLibrary,
(UObject* (*)())Z_Construct_UPackage__Script_LocationServicesBPLibrary,
};
static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULocationServices_Statics::DependentSingletons) < 16);
const UECodeGen_Private::FClassParams Z_Construct_UClass_ULocationServices_Statics::ClassParams = {
&ULocationServices::StaticClass,
nullptr,
&StaticCppClassTypeInfo,
DependentSingletons,
FuncInfo,
nullptr,
nullptr,
UE_ARRAY_COUNT(DependentSingletons),
UE_ARRAY_COUNT(FuncInfo),
0,
0,
0x000800A0u,
METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULocationServices_Statics::Class_MetaDataParams), Z_Construct_UClass_ULocationServices_Statics::Class_MetaDataParams)
};
void ULocationServices::StaticRegisterNativesULocationServices()
{
UClass* Class = ULocationServices::StaticClass();
FNativeFunctionRegistrar::RegisterFunctions(Class, MakeConstArrayView(Z_Construct_UClass_ULocationServices_Statics::Funcs));
}
UClass* Z_Construct_UClass_ULocationServices()
{
if (!Z_Registration_Info_UClass_ULocationServices.OuterSingleton)
{
UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULocationServices.OuterSingleton, Z_Construct_UClass_ULocationServices_Statics::ClassParams);
}
return Z_Registration_Info_UClass_ULocationServices.OuterSingleton;
}
DEFINE_VTABLE_PTR_HELPER_CTOR_NS(, ULocationServices);
ULocationServices::~ULocationServices() {}
// ********** End Class ULocationServices **********************************************************
// ********** Begin Registration *******************************************************************
struct Z_CompiledInDeferFile_FID_Engine_Plugins_Runtime_LocationServicesBPLibrary_Source_LocationServicesBPLibrary_Classes_LocationServicesBPLibrary_h__Script_LocationServicesBPLibrary_Statics
{
static constexpr FEnumRegisterCompiledInInfo EnumInfo[] = {
{ ELocationAccuracy_StaticEnum, TEXT("ELocationAccuracy"), &Z_Registration_Info_UEnum_ELocationAccuracy, CONSTRUCT_RELOAD_VERSION_INFO(FEnumReloadVersionInfo, 1158894013U) },
};
static constexpr FStructRegisterCompiledInInfo ScriptStructInfo[] = {
{ FLocationServicesData::StaticStruct, Z_Construct_UScriptStruct_FLocationServicesData_Statics::NewStructOps, TEXT("LocationServicesData"),&Z_Registration_Info_UScriptStruct_FLocationServicesData, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FLocationServicesData), 480761888U) },
};
static constexpr FClassRegisterCompiledInInfo ClassInfo[] = {
{ Z_Construct_UClass_ULocationServices, ULocationServices::StaticClass, TEXT("ULocationServices"), &Z_Registration_Info_UClass_ULocationServices, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULocationServices), 3799787094U) },
};
}; // Z_CompiledInDeferFile_FID_Engine_Plugins_Runtime_LocationServicesBPLibrary_Source_LocationServicesBPLibrary_Classes_LocationServicesBPLibrary_h__Script_LocationServicesBPLibrary_Statics
static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Engine_Plugins_Runtime_LocationServicesBPLibrary_Source_LocationServicesBPLibrary_Classes_LocationServicesBPLibrary_h__Script_LocationServicesBPLibrary_1347965907{
TEXT("/Script/LocationServicesBPLibrary"),
Z_CompiledInDeferFile_FID_Engine_Plugins_Runtime_LocationServicesBPLibrary_Source_LocationServicesBPLibrary_Classes_LocationServicesBPLibrary_h__Script_LocationServicesBPLibrary_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Engine_Plugins_Runtime_LocationServicesBPLibrary_Source_LocationServicesBPLibrary_Classes_LocationServicesBPLibrary_h__Script_LocationServicesBPLibrary_Statics::ClassInfo),
Z_CompiledInDeferFile_FID_Engine_Plugins_Runtime_LocationServicesBPLibrary_Source_LocationServicesBPLibrary_Classes_LocationServicesBPLibrary_h__Script_LocationServicesBPLibrary_Statics::ScriptStructInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Engine_Plugins_Runtime_LocationServicesBPLibrary_Source_LocationServicesBPLibrary_Classes_LocationServicesBPLibrary_h__Script_LocationServicesBPLibrary_Statics::ScriptStructInfo),
Z_CompiledInDeferFile_FID_Engine_Plugins_Runtime_LocationServicesBPLibrary_Source_LocationServicesBPLibrary_Classes_LocationServicesBPLibrary_h__Script_LocationServicesBPLibrary_Statics::EnumInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Engine_Plugins_Runtime_LocationServicesBPLibrary_Source_LocationServicesBPLibrary_Classes_LocationServicesBPLibrary_h__Script_LocationServicesBPLibrary_Statics::EnumInfo),
};
// ********** End Registration *********************************************************************
PRAGMA_ENABLE_DEPRECATION_WARNINGS

View File

@@ -0,0 +1,108 @@
// Copyright Epic Games, Inc. All Rights Reserved.
/*===========================================================================
Generated code exported from UnrealHeaderTool.
DO NOT modify this manually! Edit the corresponding .h files instead!
===========================================================================*/
// IWYU pragma: private, include "LocationServicesBPLibrary.h"
#ifdef LOCATIONSERVICESBPLIBRARY_LocationServicesBPLibrary_generated_h
#error "LocationServicesBPLibrary.generated.h already included, missing '#pragma once' in LocationServicesBPLibrary.h"
#endif
#define LOCATIONSERVICESBPLIBRARY_LocationServicesBPLibrary_generated_h
#include "UObject/ObjectMacros.h"
#include "UObject/ScriptMacros.h"
PRAGMA_DISABLE_DEPRECATION_WARNINGS
class ULocationServicesImpl;
enum class ELocationAccuracy : uint8;
struct FLocationServicesData;
// ********** Begin ScriptStruct FLocationServicesData *********************************************
struct Z_Construct_UScriptStruct_FLocationServicesData_Statics;
#define FID_Engine_Plugins_Runtime_LocationServicesBPLibrary_Source_LocationServicesBPLibrary_Classes_LocationServicesBPLibrary_h_35_GENERATED_BODY \
friend struct ::Z_Construct_UScriptStruct_FLocationServicesData_Statics; \
LOCATIONSERVICESBPLIBRARY_API static class UScriptStruct* StaticStruct();
struct FLocationServicesData;
// ********** End ScriptStruct FLocationServicesData ***********************************************
// ********** Begin Delegate FLocationServicesData_OnLocationChanged *******************************
#define FID_Engine_Plugins_Runtime_LocationServicesBPLibrary_Source_LocationServicesBPLibrary_Classes_LocationServicesBPLibrary_h_71_DELEGATE \
LOCATIONSERVICESBPLIBRARY_API void FLocationServicesData_OnLocationChanged_DelegateWrapper(const FMulticastScriptDelegate& LocationServicesData_OnLocationChanged, FLocationServicesData LocationData);
// ********** End Delegate FLocationServicesData_OnLocationChanged *********************************
// ********** Begin Class ULocationServices ********************************************************
#define FID_Engine_Plugins_Runtime_LocationServicesBPLibrary_Source_LocationServicesBPLibrary_Classes_LocationServicesBPLibrary_h_79_RPC_WRAPPERS \
DECLARE_FUNCTION(execGetLocationServicesImpl); \
DECLARE_FUNCTION(execIsLocationAccuracyAvailable); \
DECLARE_FUNCTION(execAreLocationServicesEnabled); \
DECLARE_FUNCTION(execGetLastKnownLocation); \
DECLARE_FUNCTION(execStopLocationServices); \
DECLARE_FUNCTION(execStartLocationServices); \
DECLARE_FUNCTION(execInitLocationServices);
struct Z_Construct_UClass_ULocationServices_Statics;
LOCATIONSERVICESBPLIBRARY_API UClass* Z_Construct_UClass_ULocationServices_NoRegister();
#define FID_Engine_Plugins_Runtime_LocationServicesBPLibrary_Source_LocationServicesBPLibrary_Classes_LocationServicesBPLibrary_h_79_INCLASS \
private: \
static void StaticRegisterNativesULocationServices(); \
friend struct ::Z_Construct_UClass_ULocationServices_Statics; \
static UClass* GetPrivateStaticClass(); \
friend LOCATIONSERVICESBPLIBRARY_API UClass* ::Z_Construct_UClass_ULocationServices_NoRegister(); \
public: \
DECLARE_CLASS2(ULocationServices, UBlueprintFunctionLibrary, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LocationServicesBPLibrary"), Z_Construct_UClass_ULocationServices_NoRegister) \
DECLARE_SERIALIZER(ULocationServices)
#define FID_Engine_Plugins_Runtime_LocationServicesBPLibrary_Source_LocationServicesBPLibrary_Classes_LocationServicesBPLibrary_h_79_STANDARD_CONSTRUCTORS \
/** Standard constructor, called after all reflected properties have been initialized */ \
LOCATIONSERVICESBPLIBRARY_API ULocationServices(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \
DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULocationServices) \
DECLARE_VTABLE_PTR_HELPER_CTOR(LOCATIONSERVICESBPLIBRARY_API, ULocationServices); \
DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULocationServices); \
/** Deleted move- and copy-constructors, should never be used */ \
ULocationServices(ULocationServices&&) = delete; \
ULocationServices(const ULocationServices&) = delete; \
LOCATIONSERVICESBPLIBRARY_API virtual ~ULocationServices();
#define FID_Engine_Plugins_Runtime_LocationServicesBPLibrary_Source_LocationServicesBPLibrary_Classes_LocationServicesBPLibrary_h_75_PROLOG
#define FID_Engine_Plugins_Runtime_LocationServicesBPLibrary_Source_LocationServicesBPLibrary_Classes_LocationServicesBPLibrary_h_79_GENERATED_BODY_LEGACY \
PRAGMA_DISABLE_DEPRECATION_WARNINGS \
public: \
FID_Engine_Plugins_Runtime_LocationServicesBPLibrary_Source_LocationServicesBPLibrary_Classes_LocationServicesBPLibrary_h_79_RPC_WRAPPERS \
FID_Engine_Plugins_Runtime_LocationServicesBPLibrary_Source_LocationServicesBPLibrary_Classes_LocationServicesBPLibrary_h_79_INCLASS \
FID_Engine_Plugins_Runtime_LocationServicesBPLibrary_Source_LocationServicesBPLibrary_Classes_LocationServicesBPLibrary_h_79_STANDARD_CONSTRUCTORS \
public: \
PRAGMA_ENABLE_DEPRECATION_WARNINGS
class ULocationServices;
// ********** End Class ULocationServices **********************************************************
#undef CURRENT_FILE_ID
#define CURRENT_FILE_ID FID_Engine_Plugins_Runtime_LocationServicesBPLibrary_Source_LocationServicesBPLibrary_Classes_LocationServicesBPLibrary_h
// ********** Begin Enum ELocationAccuracy *********************************************************
#define FOREACH_ENUM_ELOCATIONACCURACY(op) \
op(ELocationAccuracy::LA_ThreeKilometers) \
op(ELocationAccuracy::LA_OneKilometer) \
op(ELocationAccuracy::LA_HundredMeters) \
op(ELocationAccuracy::LA_TenMeters) \
op(ELocationAccuracy::LA_Best) \
op(ELocationAccuracy::LA_Navigation)
enum class ELocationAccuracy : uint8;
template<> struct TIsUEnumClass<ELocationAccuracy> { enum { Value = true }; };
template<> LOCATIONSERVICESBPLIBRARY_NON_ATTRIBUTED_API UEnum* StaticEnum<ELocationAccuracy>();
// ********** End Enum ELocationAccuracy ***********************************************************
PRAGMA_ENABLE_DEPRECATION_WARNINGS

View File

@@ -0,0 +1,33 @@
// 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"
PRAGMA_DISABLE_DEPRECATION_WARNINGS
void EmptyLinkFunctionForGeneratedCodeLocationServicesBPLibrary_init() {}
static_assert(!UE_WITH_CONSTINIT_UOBJECT, "This generated code can only be compiled with !UE_WITH_CONSTINIT_OBJECT"); LOCATIONSERVICESBPLIBRARY_API UFunction* Z_Construct_UDelegateFunction_LocationServicesBPLibrary_LocationServicesData_OnLocationChanged__DelegateSignature();
static FPackageRegistrationInfo Z_Registration_Info_UPackage__Script_LocationServicesBPLibrary;
FORCENOINLINE UPackage* Z_Construct_UPackage__Script_LocationServicesBPLibrary()
{
if (!Z_Registration_Info_UPackage__Script_LocationServicesBPLibrary.OuterSingleton)
{
static UObject* (*const SingletonFuncArray[])() = {
(UObject* (*)())Z_Construct_UDelegateFunction_LocationServicesBPLibrary_LocationServicesData_OnLocationChanged__DelegateSignature,
};
static const UECodeGen_Private::FPackageParams PackageParams = {
"/Script/LocationServicesBPLibrary",
SingletonFuncArray,
UE_ARRAY_COUNT(SingletonFuncArray),
PKG_CompiledIn | 0x00000000,
0x811C2063,
0x9849C67A,
METADATA_PARAMS(0, nullptr)
};
UECodeGen_Private::ConstructUPackage(Z_Registration_Info_UPackage__Script_LocationServicesBPLibrary.OuterSingleton, PackageParams);
}
return Z_Registration_Info_UPackage__Script_LocationServicesBPLibrary.OuterSingleton;
}
static FRegisterCompiledInInfo Z_CompiledInDeferPackage_UPackage__Script_LocationServicesBPLibrary(Z_Construct_UPackage__Script_LocationServicesBPLibrary, TEXT("/Script/LocationServicesBPLibrary"), Z_Registration_Info_UPackage__Script_LocationServicesBPLibrary, CONSTRUCT_RELOAD_VERSION_INFO(FPackageReloadVersionInfo, 0x811C2063, 0x9849C67A));
PRAGMA_ENABLE_DEPRECATION_WARNINGS

View File

@@ -0,0 +1,12 @@
// Copyright Epic Games, Inc. All Rights Reserved.
/*===========================================================================
Generated code exported from UnrealHeaderTool.
DO NOT modify this manually! Edit the corresponding .h files instead!
===========================================================================*/
#pragma once
#include "LocationServicesBPLibrary.h"
#include "LocationServicesImpl.h"

View File

@@ -0,0 +1,134 @@
// 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 "LocationServicesImpl.h"
PRAGMA_DISABLE_DEPRECATION_WARNINGS
static_assert(!UE_WITH_CONSTINIT_UOBJECT, "This generated code can only be compiled with !UE_WITH_CONSTINIT_OBJECT");
void EmptyLinkFunctionForGeneratedCodeLocationServicesImpl() {}
// ********** Begin Cross Module References ********************************************************
COREUOBJECT_API UClass* Z_Construct_UClass_UObject();
LOCATIONSERVICESBPLIBRARY_API UClass* Z_Construct_UClass_ULocationServicesImpl();
LOCATIONSERVICESBPLIBRARY_API UClass* Z_Construct_UClass_ULocationServicesImpl_NoRegister();
LOCATIONSERVICESBPLIBRARY_API UFunction* Z_Construct_UDelegateFunction_LocationServicesBPLibrary_LocationServicesData_OnLocationChanged__DelegateSignature();
UPackage* Z_Construct_UPackage__Script_LocationServicesBPLibrary();
// ********** End Cross Module References **********************************************************
// ********** Begin Class ULocationServicesImpl ****************************************************
FClassRegistrationInfo Z_Registration_Info_UClass_ULocationServicesImpl;
UClass* ULocationServicesImpl::GetPrivateStaticClass()
{
using TClass = ULocationServicesImpl;
if (!Z_Registration_Info_UClass_ULocationServicesImpl.InnerSingleton)
{
GetPrivateStaticClassBody(
TClass::StaticPackage(),
TEXT("LocationServicesImpl"),
Z_Registration_Info_UClass_ULocationServicesImpl.InnerSingleton,
StaticRegisterNativesULocationServicesImpl,
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_ULocationServicesImpl.InnerSingleton;
}
UClass* Z_Construct_UClass_ULocationServicesImpl_NoRegister()
{
return ULocationServicesImpl::GetPrivateStaticClass();
}
struct Z_Construct_UClass_ULocationServicesImpl_Statics
{
#if WITH_METADATA
static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = {
{ "IncludePath", "LocationServicesImpl.h" },
{ "ModuleRelativePath", "Classes/LocationServicesImpl.h" },
};
static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_OnLocationChanged_MetaData[] = {
{ "Category", "Services|Mobile|Location" },
{ "ModuleRelativePath", "Classes/LocationServicesImpl.h" },
};
#endif // WITH_METADATA
// ********** Begin Class ULocationServicesImpl constinit property declarations ********************
static const UECodeGen_Private::FMulticastDelegatePropertyParams NewProp_OnLocationChanged;
static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[];
// ********** End Class ULocationServicesImpl constinit property declarations **********************
static UObject* (*const DependentSingletons[])();
static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = {
TCppClassTypeTraits<ULocationServicesImpl>::IsAbstract,
};
static const UECodeGen_Private::FClassParams ClassParams;
}; // struct Z_Construct_UClass_ULocationServicesImpl_Statics
// ********** Begin Class ULocationServicesImpl Property Definitions *******************************
const UECodeGen_Private::FMulticastDelegatePropertyParams Z_Construct_UClass_ULocationServicesImpl_Statics::NewProp_OnLocationChanged = { "OnLocationChanged", nullptr, (EPropertyFlags)0x0010000010080000, UECodeGen_Private::EPropertyGenFlags::InlineMulticastDelegate, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULocationServicesImpl, OnLocationChanged), Z_Construct_UDelegateFunction_LocationServicesBPLibrary_LocationServicesData_OnLocationChanged__DelegateSignature, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_OnLocationChanged_MetaData), NewProp_OnLocationChanged_MetaData) }; // 2785837763
const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULocationServicesImpl_Statics::PropPointers[] = {
(const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULocationServicesImpl_Statics::NewProp_OnLocationChanged,
};
static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULocationServicesImpl_Statics::PropPointers) < 2048);
// ********** End Class ULocationServicesImpl Property Definitions *********************************
UObject* (*const Z_Construct_UClass_ULocationServicesImpl_Statics::DependentSingletons[])() = {
(UObject* (*)())Z_Construct_UClass_UObject,
(UObject* (*)())Z_Construct_UPackage__Script_LocationServicesBPLibrary,
};
static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULocationServicesImpl_Statics::DependentSingletons) < 16);
const UECodeGen_Private::FClassParams Z_Construct_UClass_ULocationServicesImpl_Statics::ClassParams = {
&ULocationServicesImpl::StaticClass,
nullptr,
&StaticCppClassTypeInfo,
DependentSingletons,
nullptr,
Z_Construct_UClass_ULocationServicesImpl_Statics::PropPointers,
nullptr,
UE_ARRAY_COUNT(DependentSingletons),
0,
UE_ARRAY_COUNT(Z_Construct_UClass_ULocationServicesImpl_Statics::PropPointers),
0,
0x008000A1u,
METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULocationServicesImpl_Statics::Class_MetaDataParams), Z_Construct_UClass_ULocationServicesImpl_Statics::Class_MetaDataParams)
};
void ULocationServicesImpl::StaticRegisterNativesULocationServicesImpl()
{
}
UClass* Z_Construct_UClass_ULocationServicesImpl()
{
if (!Z_Registration_Info_UClass_ULocationServicesImpl.OuterSingleton)
{
UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULocationServicesImpl.OuterSingleton, Z_Construct_UClass_ULocationServicesImpl_Statics::ClassParams);
}
return Z_Registration_Info_UClass_ULocationServicesImpl.OuterSingleton;
}
ULocationServicesImpl::ULocationServicesImpl(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {}
DEFINE_VTABLE_PTR_HELPER_CTOR_NS(, ULocationServicesImpl);
ULocationServicesImpl::~ULocationServicesImpl() {}
// ********** End Class ULocationServicesImpl ******************************************************
// ********** Begin Registration *******************************************************************
struct Z_CompiledInDeferFile_FID_Engine_Plugins_Runtime_LocationServicesBPLibrary_Source_LocationServicesBPLibrary_Classes_LocationServicesImpl_h__Script_LocationServicesBPLibrary_Statics
{
static constexpr FClassRegisterCompiledInInfo ClassInfo[] = {
{ Z_Construct_UClass_ULocationServicesImpl, ULocationServicesImpl::StaticClass, TEXT("ULocationServicesImpl"), &Z_Registration_Info_UClass_ULocationServicesImpl, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULocationServicesImpl), 3424806052U) },
};
}; // Z_CompiledInDeferFile_FID_Engine_Plugins_Runtime_LocationServicesBPLibrary_Source_LocationServicesBPLibrary_Classes_LocationServicesImpl_h__Script_LocationServicesBPLibrary_Statics
static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Engine_Plugins_Runtime_LocationServicesBPLibrary_Source_LocationServicesBPLibrary_Classes_LocationServicesImpl_h__Script_LocationServicesBPLibrary_4095683108{
TEXT("/Script/LocationServicesBPLibrary"),
Z_CompiledInDeferFile_FID_Engine_Plugins_Runtime_LocationServicesBPLibrary_Source_LocationServicesBPLibrary_Classes_LocationServicesImpl_h__Script_LocationServicesBPLibrary_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Engine_Plugins_Runtime_LocationServicesBPLibrary_Source_LocationServicesBPLibrary_Classes_LocationServicesImpl_h__Script_LocationServicesBPLibrary_Statics::ClassInfo),
nullptr, 0,
nullptr, 0,
};
// ********** End Registration *********************************************************************
PRAGMA_ENABLE_DEPRECATION_WARNINGS

View File

@@ -0,0 +1,63 @@
// Copyright Epic Games, Inc. All Rights Reserved.
/*===========================================================================
Generated code exported from UnrealHeaderTool.
DO NOT modify this manually! Edit the corresponding .h files instead!
===========================================================================*/
// IWYU pragma: private, include "LocationServicesImpl.h"
#ifdef LOCATIONSERVICESBPLIBRARY_LocationServicesImpl_generated_h
#error "LocationServicesImpl.generated.h already included, missing '#pragma once' in LocationServicesImpl.h"
#endif
#define LOCATIONSERVICESBPLIBRARY_LocationServicesImpl_generated_h
#include "UObject/ObjectMacros.h"
#include "UObject/ScriptMacros.h"
PRAGMA_DISABLE_DEPRECATION_WARNINGS
// ********** Begin Class ULocationServicesImpl ****************************************************
struct Z_Construct_UClass_ULocationServicesImpl_Statics;
LOCATIONSERVICESBPLIBRARY_API UClass* Z_Construct_UClass_ULocationServicesImpl_NoRegister();
#define FID_Engine_Plugins_Runtime_LocationServicesBPLibrary_Source_LocationServicesBPLibrary_Classes_LocationServicesImpl_h_12_INCLASS_NO_PURE_DECLS \
private: \
static void StaticRegisterNativesULocationServicesImpl(); \
friend struct ::Z_Construct_UClass_ULocationServicesImpl_Statics; \
static UClass* GetPrivateStaticClass(); \
friend LOCATIONSERVICESBPLIBRARY_API UClass* ::Z_Construct_UClass_ULocationServicesImpl_NoRegister(); \
public: \
DECLARE_CLASS2(ULocationServicesImpl, UObject, COMPILED_IN_FLAGS(CLASS_Abstract), CASTCLASS_None, TEXT("/Script/LocationServicesBPLibrary"), Z_Construct_UClass_ULocationServicesImpl_NoRegister) \
DECLARE_SERIALIZER(ULocationServicesImpl)
#define FID_Engine_Plugins_Runtime_LocationServicesBPLibrary_Source_LocationServicesBPLibrary_Classes_LocationServicesImpl_h_12_ENHANCED_CONSTRUCTORS \
/** Standard constructor, called after all reflected properties have been initialized */ \
NO_API ULocationServicesImpl(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \
/** Deleted move- and copy-constructors, should never be used */ \
ULocationServicesImpl(ULocationServicesImpl&&) = delete; \
ULocationServicesImpl(const ULocationServicesImpl&) = delete; \
DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULocationServicesImpl); \
DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULocationServicesImpl); \
DEFINE_ABSTRACT_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULocationServicesImpl) \
NO_API virtual ~ULocationServicesImpl();
#define FID_Engine_Plugins_Runtime_LocationServicesBPLibrary_Source_LocationServicesBPLibrary_Classes_LocationServicesImpl_h_9_PROLOG
#define FID_Engine_Plugins_Runtime_LocationServicesBPLibrary_Source_LocationServicesBPLibrary_Classes_LocationServicesImpl_h_12_GENERATED_BODY \
PRAGMA_DISABLE_DEPRECATION_WARNINGS \
public: \
FID_Engine_Plugins_Runtime_LocationServicesBPLibrary_Source_LocationServicesBPLibrary_Classes_LocationServicesImpl_h_12_INCLASS_NO_PURE_DECLS \
FID_Engine_Plugins_Runtime_LocationServicesBPLibrary_Source_LocationServicesBPLibrary_Classes_LocationServicesImpl_h_12_ENHANCED_CONSTRUCTORS \
private: \
PRAGMA_ENABLE_DEPRECATION_WARNINGS
class ULocationServicesImpl;
// ********** End Class ULocationServicesImpl ******************************************************
#undef CURRENT_FILE_ID
#define CURRENT_FILE_ID FID_Engine_Plugins_Runtime_LocationServicesBPLibrary_Source_LocationServicesBPLibrary_Classes_LocationServicesImpl_h
PRAGMA_ENABLE_DEPRECATION_WARNINGS

View File

@@ -0,0 +1,2 @@
D:\UE_5_7_1\Engine\Plugins\Runtime\LocationServicesBPLibrary\Source\LocationServicesBPLibrary\Classes\LocationServicesBPLibrary.h
D:\UE_5_7_1\Engine\Plugins\Runtime\LocationServicesBPLibrary\Source\LocationServicesBPLibrary\Classes\LocationServicesImpl.h