UDocumentation UE5.7 10.02.2026 (Source)
API documentation for Unreal Engine 5.7
ActorFolderDesc.h
Go to the documentation of this file.
1// Copyright Epic Games, Inc. All Rights Reserved.
2
3#pragma once
4
5#include "Misc/Guid.h"
6#include "UObject/NameTypes.h"
7#include "Containers/Map.h"
8
9#if WITH_EDITOR
10
12{
13public:
15 const FGuid& GetParentFolderGuid() const { return ParentFolderGuid; }
16 const FGuid& GetFolderGuid() const { return FolderGuid; }
17 const FString& GetFolderLabel() const { return FolderLabel; }
19 bool IsFolderDeleted() const { return bFolderIsDeleted; }
20 FString GetOuterPackageName() const { return OuterPackageName; }
21 ENGINE_API FString GetDisplayName() const;
22 ENGINE_API FString GetPath() const;
23
24private:
27 FString FolderLabel;
30 FString OuterPackageName;
31
32 friend class UActorFolder;
33};
34
36{
37public:
41
42private:
44};
45
46#endif
UE_FORCEINLINE_HINT TSharedRef< CastToType, Mode > StaticCastSharedRef(TSharedRef< CastFromType, Mode > const &InSharedRef)
Definition SharedPointer.h:127
Definition UnrealString.h.inl:34
Definition ActorFolder.h:17
Definition Guid.h:109