LeviLamina
Loading...
Searching...
No Matches
LibHttpClientInstance.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/platform/threading/UniqueLock.h"
7
8// auto generated forward declare list
9// clang-format off
10namespace Bedrock::Threading { class Mutex; }
11// clang-format on
12
13namespace Bedrock::Http {
14
15class LibHttpClientInstance {
16public:
17 // member variables
18 // NOLINTBEGIN
22 // NOLINTEND
23
24public:
25 // prevent constructor by default
26 LibHttpClientInstance& operator=(LibHttpClientInstance const&);
27 LibHttpClientInstance(LibHttpClientInstance const&);
28 LibHttpClientInstance();
29
30public:
31 // virtual functions
32 // NOLINTBEGIN
33 virtual ~LibHttpClientInstance() = default;
34 // NOLINTEND
35
36public:
37 // static variables
38 // NOLINTBEGIN
39 MCNAPI static ::Bedrock::Threading::Mutex& sMutex();
40
41 MCNAPI static ::std::weak_ptr<::Bedrock::Http::LibHttpClientInstance>& sWeakInstance();
42 // NOLINTEND
43
44public:
45 // vftables
46 // NOLINTBEGIN
47 MCNAPI static void** $vftable();
48 // NOLINTEND
49};
50
51} // namespace Bedrock::Http
static MCAPI ::Bedrock::Threading::Mutex & sMutex()
static MCAPI void ** $vftable()
static MCAPI ::std::weak_ptr<::Bedrock::Http::LibHttpClientInstance > & sWeakInstance()
Definition Mutex.h:10
Definition Alias.h:14