LeviLamina
Loading...
Searching...
No Matches
Clock.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7namespace webrtc { class NtpTime; }
8namespace webrtc { class Timestamp; }
9// clang-format on
10
11namespace webrtc {
12
13class Clock {
14public:
15 // virtual functions
16 // NOLINTBEGIN
17 // vIndex: 0
18 virtual ~Clock() = default;
19
20 // vIndex: 1
21 virtual ::webrtc::Timestamp CurrentTime() = 0;
22
23 // vIndex: 2
24 virtual ::webrtc::NtpTime ConvertTimestampToNtpTime(::webrtc::Timestamp) = 0;
25 // NOLINTEND
26
27public:
28 // member functions
29 // NOLINTBEGIN
30 MCNAPI int64 TimeInMilliseconds();
31 // NOLINTEND
32
33public:
34 // static functions
35 // NOLINTBEGIN
36 MCNAPI static ::webrtc::Clock* GetRealTimeClock();
37 // NOLINTEND
38
39public:
40 // virtual function thunks
41 // NOLINTBEGIN
42
43 // NOLINTEND
44
45public:
46 // vftables
47 // NOLINTBEGIN
48 MCNAPI static void** $vftable();
49 // NOLINTEND
50};
51
52} // namespace webrtc
Definition Clock.h:13
MCAPI int64 TimeInMilliseconds()
static MCAPI ::webrtc::Clock * GetRealTimeClock()
static MCAPI void ** $vftable()
Definition Timestamp.h:10