LeviLamina
Loading...
Searching...
No Matches
Response.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7namespace Bedrock::Http { class Status; }
8// clang-format on
9
10namespace Bedrock::Http {
11
12class Response {
13public:
14 // member variables
15 // NOLINTBEGIN
19 // NOLINTEND
20
21public:
22 // prevent constructor by default
23 Response& operator=(Response const&);
24
25public:
26 // member functions
27 // NOLINTBEGIN
28 MCAPI Response();
29
31
32 MCAPI explicit Response(::Bedrock::Http::Status status);
33
34 MCAPI ::gsl::span<uchar const> getBodyAsBytes() const;
35
36 MCAPI ~Response();
37 // NOLINTEND
38
39public:
40 // constructor thunks
41 // NOLINTBEGIN
42 MCAPI void* $ctor();
43
44 MCAPI void* $ctor(::Bedrock::Http::Response const&);
45
46 MCAPI void* $ctor(::Bedrock::Http::Status status);
47 // NOLINTEND
48
49public:
50 // destructor thunk
51 // NOLINTBEGIN
52 MCAPI void $dtor();
53 // NOLINTEND
54};
55
56} // namespace Bedrock::Http
Definition Response.h:12
Definition Status.h:7
Definition Alias.h:14