19 lines
431 B
C++
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);
|
|
|
|
};
|