LeviLamina
Loading...
Searching...
No Matches
ServiceClient.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/core/threading/Async.h"
7#include "mc/deps/core/utility/EnableNonOwnerReferences.h"
8
9// auto generated forward declare list
10// clang-format off
12namespace Social { class User; }
13// clang-format on
14
16public:
17 // member variables
18 // NOLINTBEGIN
28 // NOLINTEND
29
30public:
31 // prevent constructor by default
32 ServiceClient& operator=(ServiceClient const&);
35
36public:
37 // virtual functions
38 // NOLINTBEGIN
39 // vIndex: 0
40 virtual ~ServiceClient() /*override*/ = default;
41
42 // vIndex: 2
43 virtual ::Bedrock::Threading::Async<::std::string>
44 getAuthorizationHeader(::std::shared_ptr<::Social::User>, ::std::string const&) const;
45
46 // vIndex: 1
47 virtual ::Bedrock::Threading::Async<::std::string> getAuthorizationHeader(::std::string const&) const;
48
49 // vIndex: 3
50 virtual void update();
51
52 // vIndex: 4
53 virtual void _submitRequest(::std::shared_ptr<::HttpRequestHandler>);
54 // NOLINTEND
55
56public:
57 // virtual function thunks
58 // NOLINTBEGIN
59
60 // NOLINTEND
61};
Definition EnableNonOwnerReferences.h:7
Definition HttpRequestHandler.h:15
Definition ServiceClient.h:15
Definition Alias.h:14