LeviLamina
Loading...
Searching...
No Matches
SimulatedClock.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/external/webrtc/Clock.h"
7
8// auto generated forward declare list
9// clang-format off
10namespace webrtc { class NtpTime; }
11namespace webrtc { class Timestamp; }
12// clang-format on
13
14namespace webrtc {
15
17public:
18 // member variables
19 // NOLINTBEGIN
21 // NOLINTEND
22
23public:
24 // prevent constructor by default
25 SimulatedClock& operator=(SimulatedClock const&);
28
29public:
30 // virtual functions
31 // NOLINTBEGIN
32 // vIndex: 0
33 virtual ~SimulatedClock() /*override*/ = default;
34
35 // vIndex: 1
36 virtual ::webrtc::Timestamp CurrentTime() /*override*/;
37
38 // vIndex: 2
39 virtual ::webrtc::NtpTime ConvertTimestampToNtpTime(::webrtc::Timestamp) /*override*/;
40 // NOLINTEND
41
42public:
43 // virtual function thunks
44 // NOLINTBEGIN
45
46 // NOLINTEND
47};
48
49} // namespace webrtc
Definition Clock.h:13
Definition SimulatedClock.h:16
Definition Timestamp.h:10
Definition Alias.h:14