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 {
9 class NullHttpProvider : public HttpApi {
10  Canceller SendHttpRequest(ReqDesc, OnComplete cb) const;
11 };
12 } // namespace ipfs::ctx
13 
14 #endif // IPFS_CHROMIUM_NULLHTTPPROVIDER_H
Definition: http_api.h:11
Definition: null_http_provider.h:9
Definition: http_request_description.h:12