Files
UnrealEngineUWP/Engine/Source/Developer/EditorAnalyticsSession/Public/EditorAnalyticsSession.h
Patrick Laflamme 11371d32cc Fixed static analysis reporting inconsistent processor state from CoreMiscDefines.h.
#rb none

[CL 16526028 by Patrick Laflamme in ue5-main branch]
2021-06-01 20:18:59 -04:00

21 lines
626 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "CoreMinimal.h"
#include "Misc/Timespan.h"
#include "Modules/ModuleInterface.h"
struct UE_DEPRECATED(5.0, "Deprecated. This class was replaced by FEngineAnalyticsSessionSummary/FEditorAnalyticsSessionSummary") FEditorAnalyticsSession;
struct EDITORANALYTICSSESSION_API FEditorAnalyticsSession
{
};
/** This function removes expired sessions that were created by the deprecated system. */
EDITORANALYTICSSESSION_API void CleanupDeprecatedAnalyticSessions(const FTimespan& MaxAge);
class FEditorAnalyticsSessionModule : public IModuleInterface
{
};