Files
Jerome Delattre 17bd93a393 AutomationDriver - use share pointer to store FAutomatedApplication
Fix crash related to GC
+ harden reset with some Latent commands after they timed out

#preflight 6422f54b803cb466e851e734
#jira UE-181463
#rb Chris.Constantinescu

[CL 24870636 by Jerome Delattre in ue5-main branch]
2023-03-31 09:54:54 -04:00

19 lines
431 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "CoreMinimal.h"
class IStepExecutor;
class FDriverConfiguration;
class FAutomatedApplication;
class FStepExecutorFactory
{
public:
static TSharedRef<IStepExecutor, ESPMode::ThreadSafe> Create(
const TSharedRef<FDriverConfiguration, ESPMode::ThreadSafe>& Configuration,
const TSharedRef<FAutomatedApplication, ESPMode::ThreadSafe>& Application);
};