LeviLamina
Loading...
Searching...
No Matches
OSThreadPriority.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace Bedrock::Threading {
6
8public:
9 // member variables
10 // NOLINTBEGIN
12 // NOLINTEND
13
14public:
15 // prevent constructor by default
16 OSThreadPriority& operator=(OSThreadPriority const&);
19
20public:
21 // static variables
22 // NOLINTBEGIN
23 MCAPI static ::Bedrock::Threading::OSThreadPriority const& Elevated();
24
25 MCAPI static ::Bedrock::Threading::OSThreadPriority const& High();
26
27 MCAPI static ::Bedrock::Threading::OSThreadPriority const& Low();
28
29 MCAPI static ::Bedrock::Threading::OSThreadPriority const& Normal();
30 // NOLINTEND
31};
32
33} // namespace Bedrock::Threading
Definition OSThreadPriority.h:7
Definition Alias.h:14