Files
UnrealEngine/Engine/Source/Developer/CrashDebugHelper/Public/CrashDebugHelperModule.h
2025-05-18 13:04:45 +08:00

25 lines
590 B
C++

// 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();
/** Gets a new crash debug helper singleton for use with multiple report sending */
CRASHDEBUGHELPER_API ICrashDebugHelper* GetNew();
private:
class ICrashDebugHelper* CrashDebugHelper;
};