LeviLamina
Loading...
Searching...
No Matches
RtcEventLogOutput.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace webrtc {
6
8public:
9 // virtual functions
10 // NOLINTBEGIN
11 virtual ~RtcEventLogOutput() = default;
12
13 virtual bool IsActive() const = 0;
14
15 virtual bool Write(::std::string_view) = 0;
16
17 virtual void Flush();
18 // NOLINTEND
19
20public:
21 // virtual function thunks
22 // NOLINTBEGIN
23
24 // NOLINTEND
25};
26
27} // namespace webrtc
Definition RtcEventLogOutput.h:7