2014-12-07 19:09:38 -05:00
|
|
|
// Copyright 1998-2015 Epic Games, Inc. All Rights Reserved.
|
2014-03-14 14:13:41 -04:00
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Interface for ProfilerService modules.
|
|
|
|
|
*/
|
|
|
|
|
class IProfilerServiceModule
|
|
|
|
|
: public IModuleInterface
|
|
|
|
|
{
|
|
|
|
|
public:
|
2014-09-21 20:35:48 -04:00
|
|
|
|
2014-03-14 14:13:41 -04:00
|
|
|
/**
|
|
|
|
|
* Creates a profiler service.
|
|
|
|
|
*
|
2014-09-21 20:35:48 -04:00
|
|
|
* @param Capture Specifies whether to start capturing immediately.
|
2014-03-14 14:13:41 -04:00
|
|
|
* @return A new profiler service.
|
|
|
|
|
*/
|
|
|
|
|
virtual IProfilerServiceManagerPtr CreateProfilerServiceManager( ) = 0;
|
|
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
|
2014-09-21 20:35:48 -04:00
|
|
|
/** Virtual destructor */
|
2014-03-14 14:13:41 -04:00
|
|
|
virtual ~IProfilerServiceModule( ) { }
|
|
|
|
|
};
|