LeviLamina
Loading...
Searching...
No Matches
PriorityValue.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/external/webrtc/Priority.h"
7#include "mc/external/webrtc/StrongAlias.h"
8
9// auto generated forward declare list
10// clang-format off
11namespace webrtc { class PriorityValueTag; }
12// clang-format on
13
14namespace webrtc {
15
16class PriorityValue : public ::webrtc::StrongAlias<::webrtc::PriorityValueTag, ushort> {
17public:
18 // prevent constructor by default
19 PriorityValue();
20
21public:
22 // member functions
23 // NOLINTBEGIN
24 MCNAPI explicit PriorityValue(::webrtc::Priority priority);
25 // NOLINTEND
26
27public:
28 // constructor thunks
29 // NOLINTBEGIN
30 MCNAPI void* $ctor(::webrtc::Priority priority);
31 // NOLINTEND
32};
33
34} // namespace webrtc
Definition PriorityValueTag.h:7
MCAPI PriorityValue(::webrtc::Priority priority)
MCAPI void * $ctor(::webrtc::Priority priority)
Definition StrongAlias.h:8