UDocumentation UE5.7 10.02.2026 (Source)
API documentation for Unreal Engine 5.7
RedirectionSummary.h
Go to the documentation of this file.
1// Copyright Epic Games, Inc. All Rights Reserved.
2
3#pragma once
4
5#if WITH_EDITOR
6
7#include "Containers/Array.h"
9#include "Containers/Map.h"
11#include "HAL/CriticalSection.h"
12#include "Hash/Blake3.h"
14#include "UObject/NameTypes.h"
15
20class FRedirectionSummary
21{
22public:
23 FRedirectionSummary() = default;
24 FRedirectionSummary(FRedirectionSummary&& Other);
25 FRedirectionSummary& operator=(FRedirectionSummary&& Other);
26
27 void Add(const FCoreRedirect& CoreRedirect);
29
30 UE_DEPRECATED(5.6, "Use GetHashAffectingPackages instead.")
32
34 void AppendHashGlobal(FBlake3& Hasher);
35
38 {
39 bool operator()(const FCoreRedirect& A, const FCoreRedirect& B);
40 };
42 {
43 public:
45 void Remove(const FCoreRedirect& Redirect);
46 bool IsEmpty() const;
47 void Empty();
48 bool TryAppendHashInReadLock(FBlake3& Hasher) const;
49 void AppendHashInWriteLock(FBlake3& Hasher);
50 private:
51 void CalculateHash();
52 void AppendHashWithoutDirtyCheck(FBlake3& Hasher) const;
53 private:
56 bool bHashDirty = false;
57 };
58
59private:
61
62private:
72};
73
74#endif
OODEFFUNC typedef void(OODLE_CALLBACK t_fp_OodleCore_Plugin_Free)(void *ptr)
#define UE_DEPRECATED(Version, Message)
Definition CoreMiscDefines.h:302
UE_FORCEINLINE_HINT TSharedRef< CastToType, Mode > StaticCastSharedRef(TSharedRef< CastFromType, Mode > const &InSharedRef)
Definition SharedPointer.h:127
FRWLock Lock
Definition UnversionedPropertySerialization.cpp:921
Definition Blake3.h:94
Definition NameTypes.h:617
Definition Array.h:670
Definition UnrealString.h.inl:34
Definition SortedMap.h:20
Definition CriticalSection.h:14
Definition Blake3.h:27
Definition CoreRedirects.h:220