Files
bryan sefcik 0837230669 Ran IWYU again on half of the Engine/Source/Editor/... source files.
#jira

[CL 21716414 by bryan sefcik in ue5-main branch]
2022-08-30 23:03:03 -04:00

30 lines
896 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "Templates/SharedPointer.h"
#include "UObject/NameTypes.h"
#include "WorkflowOrientedApp/ApplicationMode.h"
#include "WorkflowOrientedApp/WorkflowTabManager.h"
class FTabManager;
class FAnimationEditorMode : public FApplicationMode
{
public:
FAnimationEditorMode(TSharedRef<class FWorkflowCentricApplication> InHostingApp, TSharedRef<class ISkeletonTree> InSkeletonTree);
/** FApplicationMode interface */
virtual void RegisterTabFactories(TSharedPtr<FTabManager> InTabManager) override;
protected:
virtual void AddTabFactory(FCreateWorkflowTabFactory FactoryCreator) override;
virtual void RemoveTabFactory(FName TabFactoryID) override;
protected:
/** The hosting app */
TWeakPtr<class FWorkflowCentricApplication> HostingAppPtr;
/** The tab factories we support */
FWorkflowAllowedTabSet TabFactories;
};