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
16class SimulatedClock : public ::webrtc::Clock {
17public:
18 // member variables
19 // NOLINTBEGIN
21 // NOLINTEND
22
23public:
24 // prevent constructor by default
25 SimulatedClock& operator=(SimulatedClock const&);
26 SimulatedClock(SimulatedClock const&);
27 SimulatedClock();
28
29public:
30 // virtual functions
31 // NOLINTBEGIN
32 virtual ~SimulatedClock() /*override*/ = default;
33
34 virtual ::webrtc::Timestamp CurrentTime() /*override*/;
35
36 virtual ::webrtc::NtpTime ConvertTimestampToNtpTime(::webrtc::Timestamp) /*override*/;
37 // NOLINTEND
38
39public:
40 // virtual function thunks
41 // NOLINTBEGIN
42
43 // NOLINTEND
44};
45
46} // namespace webrtc
Definition Clock.h:13
Definition NtpTime.h:7
Definition Timestamp.h:15
Definition Alias.h:14