ipfs-chromium
null_http_provider.h
1 #ifndef IPFS_CHROMIUM_NULLHTTPPROVIDER_H
2 #define IPFS_CHROMIUM_NULLHTTPPROVIDER_H
3 
4 #include "http_api.h"
5 
6 namespace ipfs::ctx {
7 class NullHttpProvider : public HttpApi {
8  Canceller SendHttpRequest(ReqDesc, OnComplete cb) const;
9 };
10 } // namespace ipfs::ctx
11 
12 #endif // IPFS_CHROMIUM_NULLHTTPPROVIDER_H
Definition: http_api.h:8
Definition: null_http_provider.h:7
Definition: http_request_description.h:12