veriblock-pop-cpp
C++11 Libraries for leveraging VeriBlock Proof-Of-Proof blockchain technology.
serde.h
1// Copyright (c) 2019-2022 Xenios SEZC
2// https://www.veriblock.org
3// Distributed under the MIT software license, see the accompanying
4// file LICENSE or http://www.opensource.org/licenses/mit-license.php.
5
6#ifndef VERIBLOCK_POP_CPP_C_ENTITIES_SERDE_H
7#define VERIBLOCK_POP_CPP_C_ENTITIES_SERDE_H
8
9#include "veriblock/pop/c/array.h"
10#include "veriblock/pop/c/validation_state.h"
11
12#ifdef __cplusplus
13extern "C" {
14#endif
15
16#define POP_ENTITY_SERIALIZE_TO_VBK(entity) \
17 POP_ARRAY_NAME(u8) \
18 pop_##entity##_serialize_to_vbk(const pop_##entity##_t* self)
19
20#define POP_ENTITY_DESERIALIZE_FROM_VBK(entity, ...) \
21 pop_##entity##_t* pop_##entity##_deserialize_from_vbk( \
22 POP_ARRAY_NAME(u8) bytes, \
23 POP_ENTITY_NAME(validation_state) * state, \
24 ##__VA_ARGS__)
25
26#ifdef __cplusplus
27}
28#endif
29
30#endif // VERIBLOCK_POP_CPP_C_ENTITIES_SERDE_H