veriblock-pop-cpp
C++11 Libraries for leveraging VeriBlock Proof-Of-Proof blockchain technology.
validation_state.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_VALIDATION_STATE2_H
7#define VERIBLOCK_POP_CPP_VALIDATION_STATE2_H
8
9#include <stdbool.h>
10
11#include "veriblock/pop/c/array.h"
12#include "veriblock/pop/c/entities/serde.h"
13#include "veriblock/pop/c/type_helpers.h"
14
15#ifdef __cplusplus
16extern "C" {
17#endif
18
19POP_DECLARE_ENTITY(validation_state);
20
21POP_ENTITY_NEW_FUNCTION(validation_state);
22
29POP_ENTITY_GETTER_FUNCTION(validation_state,
30 POP_ARRAY_NAME(string),
31 error_message);
32
39POP_ENTITY_GETTER_FUNCTION(validation_state, bool, is_valid);
40
47POP_ENTITY_GETTER_FUNCTION(validation_state, bool, is_invalid);
48
49#ifdef __cplusplus
50} // end of extern "C"
51#endif
52
53#endif