UDocumentation UE5.7 10.02.2026 (Source)
API documentation for Unreal Engine 5.7
VVMValueObject.h
Go to the documentation of this file.
1// Copyright Epic Games, Inc. All Rights Reserved.
2#pragma once
3
4#if WITH_VERSE_VM || defined(__INTELLISENSE__)
5
8#include "VerseVM/VVMObject.h"
9
10namespace Verse
11{
12enum class ECompares : uint8;
13
15struct VValueObject : VObject
16{
19
22
23 bool CreateFieldCached(FAllocationContext Context, FCreateFieldCacheCase Cache);
24 bool CreateField(FAllocationContext Context, VUniqueString& Name, FCreateFieldCacheCase* OutCacheCase = nullptr);
25
26protected:
27 friend class FInterpreter;
28
29 static std::byte* AllocateCell(FAllocationContext Context, VCppClassInfo& CppClassInfo, uint64 NumIndexedFields);
30
32
33 ECompares EqualImpl(FAllocationContext Context, VCell* Other, const TFunction<void(::Verse::VValue, ::Verse::VValue)>& HandlePlaceholder);
35 VValue MeltImpl(FAllocationContext Context);
36 FOpResult FreezeImpl(FAllocationContext Context, VTask*, FOp* AwaitPC);
37 static void SerializeLayout(FAllocationContext Context, VValueObject*& This, FStructuredArchiveVisitor& Visitor);
38 void SerializeImpl(FAllocationContext Context, FStructuredArchiveVisitor& Visitor);
39};
40} // namespace Verse
41
42#endif // WITH_VERSE_VM
FPlatformTypes::uint64 uint64
A 64-bit unsigned integer.
Definition Platform.h:1117
UE_FORCEINLINE_HINT TSharedRef< CastToType, Mode > StaticCastSharedRef(TSharedRef< CastFromType, Mode > const &InSharedRef)
Definition SharedPointer.h:127
uint8_t uint8
Definition binka_ue_file_header.h:8
uint32_t uint32
Definition binka_ue_file_header.h:6
Definition AndroidPlatformMisc.h:14
bool SerializeImpl(const UScriptStruct *InSourceEventType, const void *InSourceEventData, FLiveLinkSerializedFrameData &OutSerializedData)
Definition LiveLinkCompression.cpp:126
Definition Archive.h:36