ipfs-chromium
terminating_requestor.h
1 #ifndef IPFS_TERMINATING_REQUESTOR_H_
2 #define IPFS_TERMINATING_REQUESTOR_H_
3 
4 #include "requestor.h"
5 
6 namespace ipfs::gw {
11  public:
12  using HandleOutcome = Requestor::HandleOutcome;
13  std::string_view name() const override;
14  HandleOutcome handle(RequestPtr) override;
15 };
16 } // namespace ipfs::gw
17 
18 #endif // IPFS_TERMINATING_REQUESTOR_H_
Definition: requestor.h:22
Definition: terminating_requestor.h:10