LeviLamina
Loading...
Searching...
No Matches
CritScope.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7namespace rtc { class RecursiveCriticalSection; }
8// clang-format on
9
10namespace rtc {
11
12class CritScope {
13public:
14 // member variables
15 // NOLINTBEGIN
17 // NOLINTEND
18
19public:
20 // prevent constructor by default
21 CritScope& operator=(CritScope const&);
22 CritScope(CritScope const&);
23 CritScope();
24
25public:
26 // member functions
27 // NOLINTBEGIN
28 MCNAPI explicit CritScope(::rtc::RecursiveCriticalSection const* cs);
29
30 MCNAPI ~CritScope();
31 // NOLINTEND
32
33public:
34 // constructor thunks
35 // NOLINTBEGIN
36 MCNAPI void* $ctor(::rtc::RecursiveCriticalSection const* cs);
37 // NOLINTEND
38
39public:
40 // destructor thunk
41 // NOLINTBEGIN
42 MCNAPI void $dtor();
43 // NOLINTEND
44};
45
46} // namespace rtc
Definition CritScope.h:12
MCAPI void * $ctor(::rtc::RecursiveCriticalSection const *cs)
MCAPI void $dtor()
MCAPI ~CritScope()
MCAPI CritScope(::rtc::RecursiveCriticalSection const *cs)
Definition RecursiveCriticalSection.h:7
Definition Alias.h:14