hyperledger/iroha
Iroha - A simple, decentralized ledger http://iroha.tech
proto_signatories_response.hpp
Go to the documentation of this file.
1 
6 #ifndef IROHA_SHARED_MODEL_PROTO_SIGNATORIES_RESPONSE_HPP
7 #define IROHA_SHARED_MODEL_PROTO_SIGNATORIES_RESPONSE_HPP
8 
10 
11 #include "qry_responses.pb.h"
12 
13 namespace shared_model {
14  namespace proto {
16  public:
17  explicit SignatoriesResponse(
18  iroha::protocol::QueryResponse &query_response);
19 
20  const interface::types::PublicKeyCollectionType &keys() const override;
21 
22  private:
23  const iroha::protocol::SignatoriesResponse &signatories_response_;
24 
26  };
27  } // namespace proto
28 } // namespace shared_model
29 
30 #endif // IROHA_SHARED_MODEL_PROTO_SIGNATORIES_RESPONSE_HPP
Definition: proto_signatories_response.hpp:15
std::vector< std::string > PublicKeyCollectionType
Type of public keys&#39; collection.
Definition: types.hpp:52
SignatoriesResponse(iroha::protocol::QueryResponse &query_response)
Definition: proto_signatories_response.cpp:11
const interface::types::PublicKeyCollectionType & keys() const override
Definition: proto_signatories_response.cpp:17
Definition: signatories_response.hpp:18
Definition: command_executor.hpp:12