UDocumentation UE5.7 10.02.2026 (Source)
API documentation for Unreal Engine 5.7
AutomationTestPlatform.h
Go to the documentation of this file.
1// Copyright Epic Games, Inc. All Rights Reserved.
2
3#pragma once
4
5#include "CoreMinimal.h"
7
8#include "AutomationTestPlatform.generated.h"
9
10UCLASS(Abstract, MinimalAPI)
12{
14
15public:
17
19
20 //~UObject interface
21 virtual void OverrideConfigSection(FString& SectionName) override;
22 virtual const TCHAR* GetConfigOverridePlatform() const override;
23 //~End of UObject interface
24
25 AUTOMATIONTEST_API void LoadConfig();
27 AUTOMATIONTEST_API const FString& GetPlatformName() const;
28
29protected:
30 virtual void InitializeSettingsDefault() { }
31 virtual FString GetSectionName() { return StaticClass()->GetPathName(); }
32
33private:
34 FString PlatformName;
35};
36
38{
41
44};
FPlatformTypes::TCHAR TCHAR
Either ANSICHAR or WIDECHAR, depending on whether the platform supports wide characters or the requir...
Definition Platform.h:1135
UE_FORCEINLINE_HINT TSharedRef< CastToType, Mode > StaticCastSharedRef(TSharedRef< CastFromType, Mode > const &InSharedRef)
Definition SharedPointer.h:127
FString GetConfigFilename(UObject *SourceObject)
Definition Obj.cpp:2276
#define GENERATED_BODY(...)
Definition ObjectMacros.h:765
#define UCLASS(...)
Definition ObjectMacros.h:776
UClass * StaticClass()
Definition ReflectedTypeAccessors.h:13
Definition Array.h:670
Definition SubclassOf.h:30
Definition AutomationTestPlatform.h:12
virtual void InitializeSettingsDefault()
Definition AutomationTestPlatform.h:30
virtual FString GetSectionName()
Definition AutomationTestPlatform.h:31
UAutomationTestPlatformSettings()
Definition AutomationTestPlatform.h:16
COREUOBJECT_API FString GetPathName(const UObject *StopOuter=NULL) const
Definition UObjectBaseUtility.cpp:38
Definition Object.h:95
Definition AutomationTestPlatform.cpp:15
TArray< UAutomationTestPlatformSettings * > & GetAllPlatformsSettings(TSubclassOf< UAutomationTestPlatformSettings > SettingsClass)
Definition AutomationTestPlatform.cpp:48
const TSet< FName > & GetAllAvailablePlatformNames()
Definition AutomationTestPlatform.cpp:16