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 MCAPI int64 TimeInMilliseconds();
31 // NOLINTEND
32
33public:
34 // static functions
35 // NOLINTBEGIN
36 MCAPI static ::webrtc::Clock* GetRealTimeClock();
37 // NOLINTEND
38
39public:
40 // destructor thunk
41 // NOLINTBEGIN
42
43 // NOLINTEND
44
45public:
46 // virtual function thunks
47 // NOLINTBEGIN
48
49 // NOLINTEND
50
51public:
52 // vftables
53 // NOLINTBEGIN
54 MCAPI static void** $vftable();
55 // NOLINTEND
56};
57
58} // namespace webrtc
Definition Clock.h:13
Definition Timestamp.h:10