LeviLamina
Loading...
Searching...
No Matches
RequestBuilder.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace Bedrock::Http {
6
8public:
9 // member variables
10 // NOLINTBEGIN
13 // NOLINTEND
14
15public:
16 // prevent constructor by default
17 RequestBuilder& operator=(RequestBuilder const&);
19
20public:
21 // member functions
22 // NOLINTBEGIN
23 MCAPI RequestBuilder();
24
25 MCAPI ::Bedrock::Http::RequestBuilder& body(::std::string const& plainText);
26
27 MCAPI ::Bedrock::Http::RequestBuilder& url(::std::string const& url);
28
29 MCAPI ~RequestBuilder();
30 // NOLINTEND
31
32public:
33 // constructor thunks
34 // NOLINTBEGIN
35 MCAPI void* $ctor();
36 // NOLINTEND
37
38public:
39 // destructor thunk
40 // NOLINTBEGIN
41 MCAPI void $dtor();
42 // NOLINTEND
43};
44
45} // namespace Bedrock::Http
Definition RequestBuilder.h:7
Definition Alias.h:14