LeviLamina
Loading...
Searching...
No Matches
HttpInterface.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7struct HC_PERFORM_ENV;
8struct XAsyncBlock;
9struct HC_CALL;
10// clang-format on
11
12namespace Bedrock::Http {
13
14class HttpInterface : public ::Bedrock::ImplBase<::Bedrock::Http::HttpInterface> {
15public:
16 // virtual functions
17 // NOLINTBEGIN
18 virtual ~HttpInterface() /*override*/ = default;
19
20 virtual void
21 send(::gsl::not_null<::HC_CALL*> call, ::gsl::not_null<::XAsyncBlock*> asyncBlock, ::HC_PERFORM_ENV* env) = 0;
22 // NOLINTEND
23
24public:
25 // virtual function thunks
26 // NOLINTBEGIN
27
28 // NOLINTEND
29};
30
31} // namespace Bedrock::Http
Definition HttpInterface.h:14
Definition _HeaderOutputPredefine.h:260
Definition HC_CALL.h:14
Definition HC_PERFORM_ENV.h:5
Definition XAsyncBlock.h:10