EM_Task/TraceInsights/Private/Insights/Common/InsightsMenuBuilder.h

26 lines
491 B
C
Raw Permalink Normal View History

2026-02-13 16:18:33 +08:00
// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "CoreMinimal.h"
class FWorkspaceItem;
class FMenuBuilder;
class FInsightsMenuBuilder
{
public:
FInsightsMenuBuilder();
TSharedRef<FWorkspaceItem> GetInsightsToolsGroup();
TSharedRef<FWorkspaceItem> GetWindowsGroup();
void PopulateMenu(FMenuBuilder& MenuBuilder);
private:
#if !WITH_EDITOR
TSharedRef<FWorkspaceItem> InsightsToolsGroup;
TSharedRef<FWorkspaceItem> WindowsGroup;
#endif
};