// Copyright Epic Games, Inc. All Rights Reserved. #include "AnalyticsLog.h" #include "AnalyticsProviderLog.h" IMPLEMENT_MODULE( FAnalyticsLog, AnalyticsLog ); void FAnalyticsLog::StartupModule() { } void FAnalyticsLog::ShutdownModule() { } TSharedPtr FAnalyticsLog::CreateAnalyticsProvider(const FAnalyticsProviderConfigurationDelegate& GetConfigValue) const { if (GetConfigValue.IsBound()) { return MakeShared(GetConfigValue); } return nullptr; }