UDocumentation UE5.7 10.02.2026 (Source)
API documentation for Unreal Engine 5.7
ManifestField.mock.h
Go to the documentation of this file.
1// Copyright Epic Games, Inc. All Rights Reserved.
2#pragma once
3
6
7#if WITH_DEV_AUTOMATION_TESTS
8
9namespace BuildPatchServices
10{
12 : public IManifestField
13 {
14 public:
15 virtual FString AsString() const override
16 {
17 return String;
18 }
19
20 virtual double AsDouble() const override
21 {
22 return Double;
23 }
24
25 virtual int64 AsInteger() const override
26 {
27 return Integer;
28 }
29
30 public:
31 FString String;
32 double Double;
34 };
35}
36
37#endif //WITH_DEV_AUTOMATION_TESTS
FPlatformTypes::int64 int64
A 64-bit signed integer.
Definition Platform.h:1127
UE_FORCEINLINE_HINT TSharedRef< CastToType, Mode > StaticCastSharedRef(TSharedRef< CastFromType, Mode > const &InSharedRef)
Definition SharedPointer.h:127
Definition IBuildManifest.h:25
Definition BuildPatchFileConstructor.h:28