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 virtual ~Clock() = default;
18
19 virtual ::webrtc::Timestamp CurrentTime() = 0;
20
21 virtual ::webrtc::NtpTime ConvertTimestampToNtpTime(::webrtc::Timestamp) = 0;
22 // NOLINTEND
23
24public:
25 // member functions
26 // NOLINTBEGIN
27 MCNAPI int64 TimeInMilliseconds();
28 // NOLINTEND
29
30public:
31 // static functions
32 // NOLINTBEGIN
33 MCNAPI static ::webrtc::Clock* GetRealTimeClock();
34 // NOLINTEND
35
36public:
37 // virtual function thunks
38 // NOLINTBEGIN
39
40 // NOLINTEND
41
42public:
43 // vftables
44 // NOLINTBEGIN
45 MCNAPI static void** $vftable();
46 // NOLINTEND
47};
48
49} // namespace webrtc
Definition Clock.h:13
MCAPI int64 TimeInMilliseconds()
static MCAPI ::webrtc::Clock * GetRealTimeClock()
static MCAPI void ** $vftable()
Definition NtpTime.h:7
Definition Timestamp.h:15