Navigation
API > API/Runtime > API/Runtime/CoreUObject > API/Runtime/CoreUObject/Serialization
Inheritance Hierarchy
- FArchiveState
- FArchive
- FArchiveUObject
- FArchiveObjectCrc32
References
| Module | CoreUObject |
| Header | /Engine/Source/Runtime/CoreUObject/Public/Serialization/ArchiveObjectCrc32.h |
| Include | #include "Serialization/ArchiveObjectCrc32.h" |
Syntax
class FArchiveObjectCrc32 : public FArchiveUObject
Remarks
Calculates a checksum on an object's serialized data stream.
Variables
| Type | Name | Description | |
|---|---|---|---|
| FMemoryWriter | MemoryWriter | Internal archive used for serialization | |
| const UObject * | ObjectBeingSerialized | Internal currently serialized object | |
| TQueue< UObject * > | ObjectsToSerialize | Internal queue of object references awaiting serialization | |
| const UObject * | RootObject | Internal root object | |
| TArray< uint8 > | SerializedObjectData | Internal byte array used for serialization |
Constructors
| Type | Name | Description | |
|---|---|---|---|
| Default constructor. |
Destructors
| Type | Name | Description | |
|---|---|---|---|
Functions
| Type | Name | Description | |
|---|---|---|---|
| uint32 | Serialize the given object, calculate and return its checksum. | ||
| uint32 | |||
| bool | CustomSerialize
(
UObject* Object |
Return if object was already serialized |
Overridden from FArchive
Overridden from FArchiveState
| Type | Name | Description | |
|---|---|---|---|
| FString | Returns the name of the Archive. |
Operators
| Type | Name | Description | |
|---|---|---|---|
| FArchive & | operator<<
(
FName& Name |
Serializes an FName value from or into this archive. | |
| FArchive & | operator<<
(
UObject*& Object |
Serializes an UObject value from or into this archive. | |
| FArchive & | operator<<
(
FObjectPtr& ObjectPtr |
Serializes a wrapped object pointer value from or into this archive. |