UDocumentation UE5.7 10.02.2026 (Source)
API documentation for Unreal Engine 5.7
ReferencerFinder.h
Go to the documentation of this file.
1// Copyright Epic Games, Inc. All Rights Reserved.
2
3#pragma once
4
5#include "Containers/Array.h"
6#include "Containers/Set.h"
7#include "CoreMinimal.h"
8#include "HAL/Platform.h"
11
12class UObject;
13
15{
16 None = 0,
17 SkipInnerReferences = 1 << 0, // Do not add inner objects to the referencers of an outer.
18 SkipWeakReferences = 1 << 1, // Do not add weak references to the referencers
19};
20
22
UE_FORCEINLINE_HINT TSharedRef< CastToType, Mode > StaticCastSharedRef(TSharedRef< CastFromType, Mode > const &InSharedRef)
Definition SharedPointer.h:127
#define ENUM_CLASS_FLAGS(Enum)
Definition EnumClassFlags.h:6
EReferencerFinderFlags
Definition ReferencerFinder.h:15
uint8_t uint8
Definition binka_ue_file_header.h:8
Definition ReferencerFinder.h:27
static COREUOBJECT_API TArray< UObject * > GetAllReferencers(const TArray< UObject * > &Referencees, const TSet< UObject * > *ObjectsToIgnore, EReferencerFinderFlags Flags=EReferencerFinderFlags::None)
Definition ReferencerFinder.cpp:333
static COREUOBJECT_API void NotifyRegistrationComplete()
Definition ReferencerFinder.cpp:78
Definition Array.h:670
Definition Object.h:95