Files
UnrealEngineUWP/Engine/Source/Developer/CrashDebugHelper/Public/CrashDebugHelperModule.h
Jaroslaw Surowiec 899424093d CrashReport - Crash debug helper code clean-up
[CL 2633689 by Jaroslaw Surowiec in Main branch]
2015-07-27 06:33:11 -04:00

21 lines
449 B
C++

// Copyright 1998-2015 Epic Games, Inc. All Rights Reserved.
#pragma once
#include "Core.h"
#include "ModuleManager.h"
#include "CrashDebugHelper.h"
class FCrashDebugHelperModule : public IModuleInterface
{
public:
virtual void StartupModule();
virtual void ShutdownModule();
/** Gets the crash debug helper singleton or returns NULL */
CRASHDEBUGHELPER_API ICrashDebugHelper* Get();
private:
class ICrashDebugHelper* CrashDebugHelper;
};