hyperledger/iroha
Iroha - A simple, decentralized ledger http://iroha.tech
wsv_restorer_impl.hpp
Go to the documentation of this file.
1 
6 #ifndef IROHA_WSVRESTORERIMPL_HPP
7 #define IROHA_WSVRESTORERIMPL_HPP
8 
10 
12 #include "common/result.hpp"
13 
14 namespace iroha {
15  namespace ametsuchi {
16 
21  class WsvRestorerImpl : public WsvRestorer {
22  public:
23  virtual ~WsvRestorerImpl() = default;
31  CommitResult restoreWsv(Storage &storage) override;
32  };
33 
34  } // namespace ametsuchi
35 } // namespace iroha
36 
37 #endif // IROHA_WSVRESTORERIMPL_HPP
virtual ~WsvRestorerImpl()=default
Definition: result_fwd.hpp:27
Definition: storage.hpp:38
Definition: wsv_restorer.hpp:18
Definition: block_query.hpp:15
CommitResult restoreWsv(Storage &storage) override
Definition: wsv_restorer_impl.cpp:107
Definition: wsv_restorer_impl.hpp:21