LeviLamina
Loading...
Searching...
No Matches
ResetEventObj.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7namespace Bedrock::Threading { class Mutex; }
8// clang-format on
9
11public:
12 // member variables
13 // NOLINTBEGIN
14 ::ll::TypedStorage<8, 72, ::std::condition_variable> mCondition;
15 ::ll::TypedStorage<8, 80, ::Bedrock::Threading::Mutex> mMutex;
16 ::ll::TypedStorage<1, 1, ::std::atomic<bool>> mSet;
17 ::ll::TypedStorage<1, 1, bool> mAutoReset;
18 // NOLINTEND
19
20public:
21 // member functions
22 // NOLINTBEGIN
23 MCAPI bool wait_until(::std::chrono::steady_clock::time_point t);
24 // NOLINTEND
25};
Definition ResetEventObj.h:10