Files
UnrealEngine/Engine/Source/Developer/AutomationDriver/Private/Locators/SlateWidgetLocatorByPath.h
2025-05-18 13:04:45 +08:00

20 lines
418 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "CoreMinimal.h"
#include "AutomationDriverTypeDefs.h"
class IElementLocator;
class FSlateWidgetLocatorByPathFactory
{
public:
static TSharedRef<IElementLocator, ESPMode::ThreadSafe> Create(
const FString& Path);
static TSharedRef<IElementLocator, ESPMode::ThreadSafe> Create(
const FDriverElementPtr& Root,
const FString& Path);
};