You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#rnx #rb none #ROBOMERGE-SOURCE: CL 10869241 via CL 10869527 via CL 10869904 #ROBOMERGE-BOT: (v613-10869866) [CL 10870586 by ryan durand in Main branch]
45 lines
1.7 KiB
C++
45 lines
1.7 KiB
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "CoreMinimal.h"
|
|
#include "UObject/WeakObjectPtr.h"
|
|
#include "EdGraph/EdGraphPin.h"
|
|
#include "Logging/TokenizedMessage.h"
|
|
|
|
class FCompilerResultsLog;
|
|
|
|
/**
|
|
* A Message Log token that links to an elemnt (node or pin) in an EdGraph
|
|
*/
|
|
class FEdGraphToken : public IMessageToken
|
|
{
|
|
public:
|
|
/** Factory method, tokens can only be constructed as shared refs */
|
|
UNREALED_API static void Create(const UObject* InObject, FCompilerResultsLog* Log, FTokenizedMessage &OutMessage, TArray<UEdGraphNode*>& OutSourceNodes);
|
|
UNREALED_API static void Create(const UEdGraphPin* InPin, FCompilerResultsLog* Log, FTokenizedMessage &OutMessage, TArray<UEdGraphNode*>& OutSourceNodes);
|
|
UNREALED_API static void Create(const TCHAR* String, FCompilerResultsLog* Log, FTokenizedMessage &OutMessage, TArray<UEdGraphNode*>& OutSourceNodes);
|
|
UNREALED_API static void Create(const FField* InField, FCompilerResultsLog* Log, FTokenizedMessage &OutMessage, TArray<UEdGraphNode*>& OutSourceNodes);
|
|
|
|
/** Begin IMessageToken interface */
|
|
virtual EMessageToken::Type GetType() const override
|
|
{
|
|
return EMessageToken::EdGraph;
|
|
}
|
|
|
|
UNREALED_API const UEdGraphPin* GetPin() const;
|
|
UNREALED_API const UObject* GetGraphObject() const;
|
|
|
|
private:
|
|
/** Private constructor */
|
|
FEdGraphToken( const UObject* InObject, const UEdGraphPin* InPin );
|
|
/** Helper to facilitate code reuse between ::Create overloads */
|
|
static void CreateInternal(const UObject* InObject, FCompilerResultsLog* Log, FTokenizedMessage &OutMessage, TArray<UEdGraphNode*>& OutSourceNodes, const UEdGraphPin* Pin);
|
|
|
|
/** An object being referenced by this token, if any */
|
|
FWeakObjectPtr ObjectBeingReferenced;
|
|
|
|
FEdGraphPinReference PinBeingReferenced;
|
|
};
|
|
|