// Copyright Epic Games, Inc. All Rights Reserved. #pragma once #include "CoreMinimal.h" #include "HAL/PlatformCrt.h" #include "SGraphNode.h" #include "Widgets/DeclarativeSyntaxSupport.h" #define UE_API GRAPHEDITOR_API class UEdGraphNode; class SGraphNodeDefault : public SGraphNode { public: SLATE_BEGIN_ARGS( SGraphNodeDefault ) : _GraphNodeObj( static_cast(NULL) ) {} SLATE_ARGUMENT( UEdGraphNode*, GraphNodeObj ) SLATE_END_ARGS() UE_API void Construct( const FArguments& InArgs ); }; #undef UE_API