2019-12-26 15:32:37 -05:00
|
|
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
2014-03-14 14:13:41 -04:00
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
2016-11-23 15:48:37 -05:00
|
|
|
#include "CoreMinimal.h"
|
|
|
|
|
#include "Modules/ModuleInterface.h"
|
|
|
|
|
|
|
|
|
|
class ICrashDebugHelper;
|
2014-03-14 14:13:41 -04:00
|
|
|
|
2015-03-02 07:52:38 -05:00
|
|
|
class FCrashDebugHelperModule : public IModuleInterface
|
2014-03-14 14:13:41 -04:00
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
virtual void StartupModule();
|
|
|
|
|
virtual void ShutdownModule();
|
|
|
|
|
|
|
|
|
|
/** Gets the crash debug helper singleton or returns NULL */
|
2015-07-27 06:33:11 -04:00
|
|
|
CRASHDEBUGHELPER_API ICrashDebugHelper* Get();
|
2019-07-24 12:06:04 -04:00
|
|
|
|
|
|
|
|
/** Gets a new crash debug helper singleton for use with multiple report sending */
|
|
|
|
|
CRASHDEBUGHELPER_API ICrashDebugHelper* GetNew();
|
2014-03-14 14:13:41 -04:00
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
class ICrashDebugHelper* CrashDebugHelper;
|
|
|
|
|
};
|