LeviLamina
Loading...
Searching...
No Matches
Event.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7namespace webrtc { class TimeDelta; }
8// clang-format on
9
10namespace rtc {
11
12class Event {
13public:
14 // member variables
15 // NOLINTBEGIN
17 // NOLINTEND
18
19public:
20 // prevent constructor by default
21 Event& operator=(Event const&);
22 Event(Event const&);
23
24public:
25 // member functions
26 // NOLINTBEGIN
27 MCNAPI Event();
28
29 MCNAPI Event(bool, bool);
30
31 MCNAPI void Reset();
32
33 MCNAPI void Set();
34
36
37 MCNAPI ~Event();
38 // NOLINTEND
39
40public:
41 // static variables
42 // NOLINTBEGIN
43 MCNAPI static ::webrtc::TimeDelta const& kForever();
44 // NOLINTEND
45
46public:
47 // constructor thunks
48 // NOLINTBEGIN
49 MCNAPI void* $ctor();
50
51 MCNAPI void* $ctor(bool, bool);
52 // NOLINTEND
53
54public:
55 // destructor thunk
56 // NOLINTBEGIN
57 MCNAPI void $dtor();
58 // NOLINTEND
59};
60
61} // namespace rtc
Definition Event.h:12
MCAPI void Set()
MCAPI Event()
MCAPI Event(bool, bool)
static MCAPI ::webrtc::TimeDelta const & kForever()
MCAPI void $dtor()
MCAPI void Reset()
MCAPI void * $ctor()
MCAPI ~Event()
MCAPI void * $ctor(bool, bool)
MCAPI bool Wait(::webrtc::TimeDelta, ::webrtc::TimeDelta)
Definition TimeDelta.h:10
Definition Alias.h:14