Skip to content

Commit

Permalink
docs fix
Browse files Browse the repository at this point in the history
  • Loading branch information
DenisBiryukov91 committed Sep 27, 2024
1 parent 8db6c05 commit 86154da
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions include/zenoh-pico/api/serialization.h
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,13 @@
extern "C" {
#endif

/**
* Represents a reader for serialized data.
*/
typedef struct ze_deserializer_t {
z_bytes_reader_t _reader;
} ze_deserializer_t;

typedef struct _ze_serializer_t {
_z_bytes_writer_t _writer;
} _ze_serializer_t;
Expand All @@ -33,13 +40,6 @@ _Z_OWNED_TYPE_VALUE_PREFIX(ze, _ze_serializer_t, serializer)

_Z_OWNED_FUNCTIONS_NO_COPY_DEF_PREFIX(ze, serializer)

/**
* Represents a reader for serialized data.
*/
typedef struct ze_deserializer_t {
z_bytes_reader_t _reader;
} ze_deserializer_t;

/**
* Constructs serializer.
*
Expand Down

0 comments on commit 86154da

Please sign in to comment.