LeviLamina
Loading...
Searching...
No Matches
ContentLogFileEndPoint.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/core/debug/log/ContentLogEndPoint.h"
7#include "mc/deps/core/debug/log/LogArea.h"
8#include "mc/deps/core/debug/log/LogLevel.h"
9
10// auto generated forward declare list
11// clang-format off
12namespace Core { class Path; }
13// clang-format on
14
16public:
17 // member variables
18 // NOLINTBEGIN
25 // NOLINTEND
26
27public:
28 // prevent constructor by default
32
33public:
34 // virtual functions
35 // NOLINTBEGIN
36 // vIndex: 0
37 virtual ~ContentLogFileEndPoint() /*override*/ = default;
38
39 // vIndex: 1
40 virtual void log(::LogArea const area, ::LogLevel const level, char const* message) /*override*/;
41
42 // vIndex: 2
43 virtual void flush() /*override*/;
44
45 // vIndex: 3
46 virtual void setEnabled(bool newState) /*override*/;
47
48 // vIndex: 4
49 virtual bool isEnabled() const /*override*/;
50
51 // vIndex: 2
52 virtual bool logOnlyOnce() const /*override*/;
53 // NOLINTEND
54
55public:
56 // member functions
57 // NOLINTBEGIN
59 ::Core::Path debugLogDirectory,
60 ::Core::Path fileName,
61 ::std::optional<::LogLevel> minLogLevel
62 );
63 // NOLINTEND
64
65public:
66 // static variables
67 // NOLINTBEGIN
68 MCNAPI static ::std::string_view const& FILE_NAME();
69 // NOLINTEND
70
71public:
72 // constructor thunks
73 // NOLINTBEGIN
74 MCNAPI void* $ctor(::Core::Path debugLogDirectory, ::Core::Path fileName, ::std::optional<::LogLevel> minLogLevel);
75 // NOLINTEND
76
77public:
78 // virtual function thunks
79 // NOLINTBEGIN
80 MCNAPI void $log(::LogArea const area, ::LogLevel const level, char const* message);
81
82 MCNAPI void $flush();
83
84 MCNAPI void $setEnabled(bool newState);
85
86 MCNAPI bool $isEnabled() const;
87
88 MCNAPI bool $logOnlyOnce() const;
89 // NOLINTEND
90
91public:
92 // vftables
93 // NOLINTBEGIN
94 MCNAPI static void** $vftableForLogEndPoint();
95
97 // NOLINTEND
98};
Definition ContentLogEndPoint.h:11
Definition ContentLogFileEndPoint.h:15
MCAPI void * $ctor(::Core::Path debugLogDirectory, ::Core::Path fileName, ::std::optional<::LogLevel > minLogLevel)
static MCAPI void ** $vftableForEnableNonOwnerReferences()
MCAPI bool $isEnabled() const
static MCAPI void ** $vftableForLogEndPoint()
MCAPI bool $logOnlyOnce() const
static MCAPI ::std::string_view const & FILE_NAME()
MCAPI void $log(::LogArea const area, ::LogLevel const level, char const *message)
MCAPI void $setEnabled(bool newState)
MCAPI ContentLogFileEndPoint(::Core::Path debugLogDirectory, ::Core::Path fileName, ::std::optional<::LogLevel > minLogLevel)
Definition Path.h:17
Definition Path.h:16
Definition Alias.h:14