veriblock-pop-cpp
C++11 Libraries for leveraging VeriBlock Proof-Of-Proof blockchain technology.
command.hpp
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 ALTINTEGRATION_COMMAND_HPP
7#define ALTINTEGRATION_COMMAND_HPP
8
9#include <string>
10#include <veriblock/pop/uint.hpp>
11#include <veriblock/pop/validation_state.hpp>
12
13namespace altintegration {
14
16struct Command {
17 virtual ~Command() = default;
18
20 VBK_CHECK_RETURN virtual bool Execute(ValidationState& state) noexcept = 0;
21 virtual void UnExecute() noexcept = 0;
22};
23
25using CommandPtr = std::shared_ptr<Command>;
26
27} // namespace altintegration
28
29#endif // ALTINTEGRATION_COMMAND_HPP
Defines logging helpers.
Definition: block.hpp:14