LeviLamina
Loading...
Searching...
No Matches
SharedRecursiveMapMutex.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/core/threading/SharedRecursiveMutexBase.h"
7
8namespace Bedrock::Threading {
9
11public:
12 // member variables
13 // NOLINTBEGIN
16 // NOLINTEND
17
18public:
19 // prevent constructor by default
23
24public:
25 // virtual functions
26 // NOLINTBEGIN
27 // vIndex: 1
28 virtual bool _threadHoldsSharedLock(::std::thread::id) /*override*/;
29
30 // vIndex: 2
31 virtual bool _shouldLockForSharedAccess(::std::thread::id) /*override*/;
32
33 // vIndex: 3
34 virtual bool _shouldUnLockForSharedAccess(::std::thread::id) /*override*/;
35
36 // vIndex: 0
37 virtual ~SharedRecursiveMapMutex() /*override*/ = default;
38 // NOLINTEND
39
40public:
41 // destructor thunk
42 // NOLINTBEGIN
43
44 // NOLINTEND
45
46public:
47 // virtual function thunks
48 // NOLINTBEGIN
49
50 // NOLINTEND
51};
52
53} // namespace Bedrock::Threading
Definition SharedRecursiveMapMutex.h:10
Definition SharedRecursiveMutexBase.h:7
Definition Alias.h:14