Files
UnrealEngineUWP/Engine/Source/Editor/AnimationModifiers/Private/AnimationModifiersModule.h
Ben Marsh 13d012685f Merging copyright update from 4.19 branch.
#rb none
#rnx
#jira

[CL 3818977 by Ben Marsh in Staging-4.19 branch]
2018-01-02 15:30:26 -05:00

29 lines
1.1 KiB
C++

// Copyright 1998-2018 Epic Games, Inc. All Rights Reserved.
#pragma once
#include "IAnimationModifiersModule.h"
#include "WorkflowOrientedApp/ApplicationMode.h"
#include "WorkflowOrientedApp/WorkflowCentricApplication.h"
#include "WorkflowTabFactory.h"
/** Animation modifiers module, handles injecting of the AnimationModifiersTab into animation and skeleton editor modes */
class FAnimationModifiersModule : public IAnimationModifiersModule
{
public:
/** Called right after the module DLL has been loaded and the module object has been created */
virtual void StartupModule() override;
/** Called before the module is unloaded, right before the module object is destroyed */
virtual void ShutdownModule() override;
protected:
/** Callback for extending an application mode */
TSharedRef<FApplicationMode> ExtendApplicationMode(const FName ModeName, TSharedRef<FApplicationMode> InMode);
/** Weak list of application modes for which a tab factory was registered */
TArray<TWeakPtr<FApplicationMode>> RegisteredApplicationModes;
FWorkflowApplicationModeExtender Extender;
};