LeviLamina
Loading...
Searching...
No Matches
IgnoredResponseBody.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/core/http/IResponseBody.h"
7#include "mc/deps/core/http/ResponseBodyType.h"
8
9namespace Bedrock::Http {
10
12public:
13 // virtual functions
14 // NOLINTBEGIN
15 virtual ::std::error_code start(::std::optional<uint64>) /*override*/;
16
17 virtual ::std::error_code write(::gsl::span<uchar const>) /*override*/;
18
19 virtual void complete() /*override*/;
20
21 virtual void cancel() /*override*/;
22
23 virtual ::std::string const& getLoggableDestination() const /*override*/;
24
25 virtual ::gsl::span<uchar const> getLoggableData() const /*override*/;
26
27 virtual ::Bedrock::Http::ResponseBodyType getType() const /*override*/;
28 // NOLINTEND
29
30public:
31 // virtual function thunks
32 // NOLINTBEGIN
33#ifdef LL_PLAT_C
34 MCNAPI ::std::error_code $start(::std::optional<uint64>);
35
36 MCNAPI ::std::string const& $getLoggableDestination() const;
37
38 MCNAPI ::gsl::span<uchar const> $getLoggableData() const;
39
40 MCNAPI ::Bedrock::Http::ResponseBodyType $getType() const;
41#endif
42
43
44 // NOLINTEND
45};
46
47} // namespace Bedrock::Http
Definition IgnoredResponseBody.h:11
Definition IResponseBody.h:10