Navigation
Unreal Engine C++ API Reference > Runtime > Cbor
References
Module | Cbor |
Header | /Engine/Source/Runtime/Cbor/Public/CborWriter.h |
Include | #include "CborWriter.h" |
Syntax
class FCborWriter
Remarks
Writer for encoding a stream with the cbor protocol
Constructors
Type | Name | Description | |
---|---|---|---|
![]() |
FCborWriter
(
FArchive* InStream, |
Construct a CBOR writer. |
Destructors
Type | Name | Description | |
---|---|---|---|
![]() |
~FCborWriter () |
Functions
Type | Name | Description | |
---|---|---|---|
![]() ![]() |
const FArchive * | GetArchive () |
|
![]() |
void | Write a container break code, need a indefinite container context. | |
![]() |
void | WriteContainerStart
(
ECborCode ContainerType, |
Write a container start code. |
![]() |
void | WriteNull () |
Write a value. |
![]() |
void | WriteValue
(
uint64 Value |
|
![]() |
void | WriteValue
(
int64 Value |
|
![]() |
void | WriteValue
(
bool Value |
|
![]() |
void | WriteValue
(
float Value |
|
![]() |
void | WriteValue
(
double Value |
|
![]() |
void | WriteValue
(
const FString& Value |
|
![]() |
void | WriteValue
(
const char* CString, |
|
![]() |
void | WriteValue
(
const uint8* Bytes, |