29 lines
529 B
C++
29 lines
529 B
C++
// 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<FSlateStyleSet> Create();
|
|
|
|
static TSharedPtr<FSlateStyleSet> StyleInstance;
|
|
};
|
|
|
|
#undef UE_API
|