Navigation
API > API/Runtime > API/Runtime/CoreUObject > API/Runtime/CoreUObject/FLinkerLoad
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
bool FindImport
(
FStringView FullObjectPath, |
Finds an import given the full object path as a string. | UObject/LinkerLoad.h | |
bool FindImport
(
FPackageIndex OuterIndex, |
Locates package index for a given name in an outer. | UObject/LinkerLoad.h | |
UObject * FindImport
(
UClass* ImportClass, |
Finds import, tries to fall back to dynamic class if the object could not be found | UObject/LinkerLoad.h |
FindImport(FStringView, FPackageIndex &)
Description
Finds an import given the full object path as a string.
Note: since imports are stored in an array, it needs to linearly search for each import in the object path.
| Name | FindImport |
| Type | function |
| Header File | /Engine/Source/Runtime/CoreUObject/Public/UObject/LinkerLoad.h |
| Include Path | #include "UObject/LinkerLoad.h" |
| Source | /Engine/Source/Runtime/CoreUObject/Private/UObject/LinkerLoad.cpp |
bool FindImport
(
FStringView FullObjectPath,
FPackageIndex & OutObjectIndex
)
FindImport(FPackageIndex, FName, FPackageIndex &)
Description
Locates package index for a given name in an outer.
| Name | FindImport |
| Type | function |
| Header File | /Engine/Source/Runtime/CoreUObject/Public/UObject/LinkerLoad.h |
| Include Path | #include "UObject/LinkerLoad.h" |
| Source | /Engine/Source/Runtime/CoreUObject/Private/UObject/LinkerLoad.cpp |
bool FindImport
(
FPackageIndex OuterIndex,
FName ObjectName,
FPackageIndex & OutObjectIndex
)
FindImport(UClass , UObject , const TCHAR *)
Description
Finds import, tries to fall back to dynamic class if the object could not be found
| Name | FindImport |
| Type | function |
| Header File | /Engine/Source/Runtime/CoreUObject/Public/UObject/LinkerLoad.h |
| Include Path | #include "UObject/LinkerLoad.h" |
| Source | /Engine/Source/Runtime/CoreUObject/Private/Blueprint/BlueprintSupport.cpp |
UObject * FindImport
(
UClass * ImportClass,
UObject * ImportOuter,
const TCHAR * Name
)