You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
32 lines
768 B
C++
32 lines
768 B
C++
// Copyright 1998-2015 Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
|
|
// forward declarations
|
|
class IProfilerManager;
|
|
class ISessionManager;
|
|
|
|
|
|
/**
|
|
* Interface for the profiler module.
|
|
*/
|
|
class IProfilerModule
|
|
: public IModuleInterface
|
|
{
|
|
public:
|
|
|
|
/**
|
|
* Creates the main window for the profiler.
|
|
*
|
|
* @param InSessionManager The session manager to use.
|
|
* @param ConstructUnderMajorTab The tab which will contain the profiler tabs.
|
|
*
|
|
*/
|
|
virtual TSharedRef<SWidget> CreateProfilerWindow( const TSharedRef<ISessionManager>& InSessionManager, const TSharedRef<SDockTab>& ConstructUnderMajorTab ) = 0;
|
|
|
|
/**
|
|
* @return a weak pointer to the global instance of the profiler manager.
|
|
*/
|
|
virtual TWeakPtr<IProfilerManager> GetProfilerManager() = 0;
|
|
}; |