LeviLamina
Loading...
Searching...
No Matches
ContentLogEndPoint.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/core/debug/log/LogArea.h"
7#include "mc/deps/core/debug/log/LogEndPoint.h"
8#include "mc/deps/core/debug/log/LogLevel.h"
9#include "mc/deps/core/utility/EnableNonOwnerReferences.h"
10
12public:
13 // virtual functions
14 // NOLINTBEGIN
15 // vIndex: 0
16 virtual ~ContentLogEndPoint() /*override*/;
17
18 // vIndex: 1
19 virtual void log(::LogArea const, ::LogLevel const, char const*) = 0;
20
21 // vIndex: 1
22 virtual void log(char const* message) /*override*/;
23
24 // vIndex: 2
25 virtual bool logOnlyOnce() const = 0;
26 // NOLINTEND
27
28public:
29 // destructor thunk
30 // NOLINTBEGIN
31 MCAPI void $dtor();
32 // NOLINTEND
33
34public:
35 // virtual function thunks
36 // NOLINTBEGIN
37 MCFOLD void $log(char const* message);
38 // NOLINTEND
39
40public:
41 // vftables
42 // NOLINTBEGIN
43 MCAPI static void** $vftableForLogEndPoint();
44
45 MCAPI static void** $vftableForEnableNonOwnerReferences();
46 // NOLINTEND
47};
Definition EnableNonOwnerReferences.h:7
Definition LogEndPoint.h:7
Definition ContentLogEndPoint.h:11