Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/FCbWriter
| |
|
| Name |
EStateFlags |
| Type |
enum |
| Header File |
/Engine/Source/Runtime/Core/Private/Serialization/CompactBinaryWriter.cpp |
| Include Path |
#include "Serialization/CompactBinaryWriter.cpp" |
Syntax
enum EStateFlags
{
None = 0,
Name = 1 << 0,
Field = 1 << 1,
Array = 1 << 2,
Object = 1 << 3,
}
Values
| Name |
Remarks |
| None |
|
| Name |
Whether a name has been written for the current field. |
| Field |
Whether this state is in the process of writing a field. |
| Array |
Whether this state is for array fields. |
| Object |
Whether this state is for object fields. |