You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#rb Ionut.Matasaru Matt Peters #preflight 628b8690693c5e1de2773a39 [CL 20327158 by Catalin Dragoiu in ue5-main branch]
28 lines
740 B
C++
28 lines
740 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "TraceServices/ModuleService.h"
|
|
|
|
namespace TraceServices
|
|
{
|
|
|
|
class FCookProfilerModule
|
|
: public IModule
|
|
{
|
|
public:
|
|
#if WITH_EDITOR
|
|
virtual bool ShouldBeEnabledByDefault() const override { return false; }
|
|
#endif
|
|
virtual void GetModuleInfo(FModuleInfo& OutModuleInfo) override;
|
|
virtual void OnAnalysisBegin(IAnalysisSession& Session) override;
|
|
virtual void GenerateReports(const IAnalysisSession& Session, const TCHAR* CmdLine, const TCHAR* OutputDirectory) override {}
|
|
virtual void GetLoggers(TArray<const TCHAR*>& OutLoggers) override;
|
|
virtual const TCHAR* GetCommandLineArgument() override
|
|
{
|
|
return TEXT("cooktrace");
|
|
}
|
|
};
|
|
|
|
} // namespace TraceServices
|