Files
UnrealEngineUWP/Engine/Source/Editor/BlueprintGraph/Private/StructMemberNodeHandlers.h
bryan sefcik 8cc129f2b6 IWYU Pass 1 - Engine/Source/Editor/...
#jira
#preflight 6306736ac85b7fef22be7751

[CL 21558583 by bryan sefcik in ue5-main branch]
2022-08-24 22:45:13 -04:00

35 lines
936 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "KismetCompilerMisc.h"
#include "VariableSetHandler.h"
class FKismetCompilerContext;
class UEdGraphNode;
class UEdGraphPin;
struct FKismetFunctionContext;
class FKCHandler_StructMemberVariableGet : public FNodeHandlingFunctor
{
public:
FKCHandler_StructMemberVariableGet(FKismetCompilerContext& InCompilerContext)
: FNodeHandlingFunctor(InCompilerContext)
{
}
virtual void RegisterNet(FKismetFunctionContext& Context, UEdGraphPin* Net) override;
virtual void RegisterNets(FKismetFunctionContext& Context, UEdGraphNode* InNode) override;
};
class FKCHandler_StructMemberVariableSet : public FKCHandler_VariableSet
{
public:
FKCHandler_StructMemberVariableSet(FKismetCompilerContext& InCompilerContext)
: FKCHandler_VariableSet(InCompilerContext)
{
}
virtual void RegisterNets(FKismetFunctionContext& Context, UEdGraphNode* InNode) override;
};