// Copyright Epic Games, Inc. All Rights Reserved. #pragma once #include "Templates/SharedPointer.h" class ISlateStyle; class FSlateStyleSet; #define UE_API LOGVISUALIZER_API /** * Implements the visual style of LogVisualizer. */ class FLogVisualizerStyle { public: static void Initialize(); static void Shutdown(); UE_API static const ISlateStyle& Get(); UE_API static FName GetStyleSetName(); private: static TSharedRef Create(); static TSharedPtr StyleInstance; }; #undef UE_API