Files
2025-05-18 13:04:45 +08:00

22 lines
504 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "CoreMinimal.h"
#include "Templates/SharedPointer.h"
#include "UObject/NameTypes.h"
class ISlateMetaData;
/**
* A static helper class which is used to easily construct various types of AutomationDriver specific SlateMetaData.
*/
class FDriverMetaData
{
public:
/**
* @return the automation driver specific metadata type for specifying an Id for a widget
*/
static SLATE_API TSharedRef<ISlateMetaData> Id(FName Tag);
};