You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#jira UES-7210 #rb benoit.chauvin #rn [Experimental] Publishing Submit Tool code [CL 36977217 by juan legaz in 5.5 branch]
21 lines
528 B
C++
21 lines
528 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "CoreMinimal.h"
|
|
|
|
#include "StandAloneTelemetry.h"
|
|
#include "ITelemetry.h"
|
|
|
|
class FTelemetryService
|
|
{
|
|
public:
|
|
static const TSharedPtr<ITelemetry> & Get();
|
|
static void Init(const FString& InUrl, const FGuid& InSessionID);
|
|
static void Shutdown();
|
|
static void BlockFlush(float InTimeout);
|
|
private:
|
|
static void Set(TSharedPtr<ITelemetry> InInstance);
|
|
static TSharedPtr<ITelemetry> TelemetryInstance;
|
|
static FCriticalSection InstanceCriticalSection;
|
|
}; |