You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
25 lines
642 B
C++
25 lines
642 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "TraceServices/ModuleService.h"
|
|
|
|
namespace TraceServices
|
|
{
|
|
|
|
class FCountersModule
|
|
: 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 TEXT("counterstrace");
|
|
}
|
|
virtual void GenerateReports(const IAnalysisSession& Session, const TCHAR* CmdLine, const TCHAR* OutputDirectory) override {}
|
|
};
|
|
|
|
} // namespace TraceServices
|