You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
24 lines
724 B
C++
24 lines
724 B
C++
// Copyright 1998-2014 Epic Games, Inc. All Rights Reserved.
|
|
|
|
/*=============================================================================
|
|
IProfilerManager.h: Declares the IProfilerManager interface.
|
|
=============================================================================*/
|
|
|
|
#pragma once
|
|
|
|
/** Type definition for shared pointers to instances of IProfilerManager. */
|
|
typedef TSharedPtr<class IProfilerManager> IProfilerManagerPtr;
|
|
|
|
/** Type definition for shared references to instances of IProfilerManager. */
|
|
typedef TSharedRef<class IProfilerManager> IProfilerManagerRef;
|
|
|
|
/**
|
|
* Interface for profiler manager.
|
|
*/
|
|
class IProfilerManager
|
|
{
|
|
public:
|
|
/** Virtual destructor. */
|
|
virtual ~IProfilerManager()
|
|
{}
|
|
}; |