You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
29 lines
697 B
C++
29 lines
697 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "TraceServices/ModuleService.h"
|
|
#include "UObject/NameTypes.h"
|
|
|
|
namespace TraceServices
|
|
{
|
|
|
|
class FNetProfilerModule
|
|
: public IModule
|
|
{
|
|
public:
|
|
virtual void GetModuleInfo(FModuleInfo& OutModuleInfo) override;
|
|
virtual void OnAnalysisBegin(IAnalysisSession& Session) override;
|
|
virtual void GetLoggers(TArray<const TCHAR*>& OutLoggers) override;
|
|
virtual const TCHAR* GetCommandLineArgument() override
|
|
{
|
|
return nullptr;
|
|
}
|
|
virtual void GenerateReports(const IAnalysisSession& Session, const TCHAR* CmdLine, const TCHAR* OutputDirectory) override {}
|
|
|
|
private:
|
|
static FName ModuleName;
|
|
};
|
|
|
|
} // namespace TraceServices
|