Files
UnrealEngineUWP/Engine/Source/Developer/CrashDebugHelper/Public/CrashDebugHelperModule.h
T

25 lines
590 B
C++
Raw Normal View History

2019-12-26 15:32:37 -05:00
// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "CoreMinimal.h"
#include "Modules/ModuleInterface.h"
class ICrashDebugHelper;
class FCrashDebugHelperModule : public IModuleInterface
{
public:
virtual void StartupModule();
virtual void ShutdownModule();
/** Gets the crash debug helper singleton or returns NULL */
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();
private:
class ICrashDebugHelper* CrashDebugHelper;
};