LeviLamina
Loading...
Searching...
No Matches
LogSink.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/external/rtc/LoggingSeverity.h"
7
8// auto generated forward declare list
9// clang-format off
10namespace rtc { class LogLineRef; }
11// clang-format on
12
13namespace rtc {
14
15class LogSink {
16public:
17 // member variables
18 // NOLINTBEGIN
21 // NOLINTEND
22
23public:
24 // prevent constructor by default
25 LogSink& operator=(LogSink const&);
26 LogSink(LogSink const&);
27 LogSink();
28
29public:
30 // virtual functions
31 // NOLINTBEGIN
32 // vIndex: 0
33 virtual ~LogSink() = default;
34
35 // vIndex: 7
36 virtual void OnLogMessage(::std::string const& msg, ::rtc::LoggingSeverity severity, char const* tag);
37
38 // vIndex: 6
39 virtual void OnLogMessage(::std::string const& msg, ::rtc::LoggingSeverity);
40
41 // vIndex: 5
42 virtual void OnLogMessage(::std::string const&) = 0;
43
44 // vIndex: 4
45 virtual void OnLogMessage(::std::string_view msg, ::rtc::LoggingSeverity severity, char const* tag);
46
47 // vIndex: 3
48 virtual void OnLogMessage(::std::string_view msg, ::rtc::LoggingSeverity);
49
50 // vIndex: 2
51 virtual void OnLogMessage(::std::string_view msg);
52
53 // vIndex: 1
54 virtual void OnLogMessage(::rtc::LogLineRef const& log_line);
55 // NOLINTEND
56
57public:
58 // virtual function thunks
59 // NOLINTBEGIN
60 MCNAPI void $OnLogMessage(::std::string const& msg, ::rtc::LoggingSeverity severity, char const* tag);
61
62 MCNAPI void $OnLogMessage(::std::string const& msg, ::rtc::LoggingSeverity);
63
64 MCNAPI void $OnLogMessage(::std::string_view msg, ::rtc::LoggingSeverity severity, char const* tag);
65
66 MCNAPI void $OnLogMessage(::std::string_view msg, ::rtc::LoggingSeverity);
67
68 MCNAPI void $OnLogMessage(::std::string_view msg);
69
70 MCNAPI void $OnLogMessage(::rtc::LogLineRef const& log_line);
71 // NOLINTEND
72
73public:
74 // vftables
75 // NOLINTBEGIN
76 MCNAPI static void** $vftable();
77 // NOLINTEND
78};
79
80} // namespace rtc
Definition LogLineRef.h:7
Definition LogSink.h:15
MCAPI void $OnLogMessage(::std::string_view msg, ::rtc::LoggingSeverity severity, char const *tag)
MCAPI void $OnLogMessage(::std::string_view msg, ::rtc::LoggingSeverity)
MCAPI void $OnLogMessage(::std::string_view msg)
MCAPI void $OnLogMessage(::std::string const &msg, ::rtc::LoggingSeverity)
MCAPI void $OnLogMessage(::rtc::LogLineRef const &log_line)
static MCAPI void ** $vftable()
MCAPI void $OnLogMessage(::std::string const &msg, ::rtc::LoggingSeverity severity, char const *tag)
Definition Alias.h:14