Files
UnrealEngineUWP/Engine/Source/Editor/BlueprintGraph/Private/DynamicCastHandler.h
Jaroslaw Palczynski ebce413232 UE4 Refactoring. Changed OVERRIDE and FINAL macros to keywords override and final.
[CL 2104397 by Jaroslaw Palczynski in Main branch]
2014-06-13 06:14:46 -04:00

27 lines
825 B
C++

// Copyright 1998-2014 Epic Games, Inc. All Rights Reserved.
#pragma once
#include "KismetCompiler.h"
//////////////////////////////////////////////////////////////////////////
// FKCHandler_DynamicCast
class FKCHandler_DynamicCast : public FNodeHandlingFunctor
{
protected:
TMap<UEdGraphNode*, FBPTerminal*> BoolTermMap;
EKismetCompiledStatementType CastType;
public:
FKCHandler_DynamicCast(FKismetCompilerContext& InCompilerContext, EKismetCompiledStatementType InCastType)
: FNodeHandlingFunctor(InCompilerContext)
, CastType(InCastType)
{
}
virtual void RegisterNets(FKismetFunctionContext& Context, UEdGraphNode* Node) override;
virtual void RegisterNet(FKismetFunctionContext& Context, UEdGraphPin* Net) override;
virtual void Compile(FKismetFunctionContext& Context, UEdGraphNode* Node) override;
};