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