Files
UnrealEngineUWP/Engine/Source/Developer/Profiler/Public/Interfaces/IProfilerManager.h
2014-03-14 14:13:41 -04:00

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()
{}
};