UDocumentation UE5.7 10.02.2026 (Source)
API documentation for Unreal Engine 5.7
DataflowSubGraph.h
Go to the documentation of this file.
1// Copyright Epic Games, Inc. All Rights Reserved.
2
3#pragma once
4
5#include "EdGraph/EdGraph.h"
6
7#include "DataflowSubGraph.generated.h"
8
11
13
20
21UCLASS(MinimalAPI)
23{
25
26public:
27 FDataflowSubGraphInputNode* GetInputNode() const;
28 FDataflowSubGraphOutputNode* GetOutputNode() const;
29
30 DATAFLOWENGINE_API bool IsForEachSubGraph() const;
31 DATAFLOWENGINE_API void SetForEachSubGraph(bool bValue);
32
33 bool IsLoaded() const { return bIsLoaded; }
34 const FGuid& GetSubGraphGuid() const { return SubGraphGuid; }
35
36private:
37 virtual void PostLoad() override;
38
43 UPROPERTY()
44 FGuid SubGraphGuid;
45
46 UPROPERTY()
47 bool bIsForEach = false;
48
49 bool bIsLoaded : 1 = false;
50};
UE_FORCEINLINE_HINT TSharedRef< CastToType, Mode > StaticCastSharedRef(TSharedRef< CastFromType, Mode > const &InSharedRef)
Definition SharedPointer.h:127
#define UPROPERTY(...)
UObject definition macros.
Definition ObjectMacros.h:744
#define GENERATED_UCLASS_BODY(...)
Definition ObjectMacros.h:768
#define UCLASS(...)
Definition ObjectMacros.h:776
Definition DataflowSubGraph.h:23
bool IsLoaded() const
Definition DataflowSubGraph.h:33
const FGuid & GetSubGraphGuid() const
Definition DataflowSubGraph.h:34
Definition EdGraph.h:68
@ false
Definition radaudio_common.h:23
Definition DataflowSubGraph.h:15
DECLARE_MULTICAST_DELEGATE_OneParam(FOnDataflowSubGraphLoaded, const UDataflowSubGraph &)
static DATAFLOWENGINE_API FOnDataflowSubGraphLoaded OnSubGraphLoaded
Definition DataflowSubGraph.h:18
Definition DataflowSubGraphNodes.h:39
Definition DataflowSubGraphNodes.h:79
Definition Guid.h:109