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
15class ContentLogFileEndPoint : public ::ContentLogEndPoint {
16public:
17 // member variables
18 // NOLINTBEGIN
25 // NOLINTEND
26
27public:
28 // prevent constructor by default
29 ContentLogFileEndPoint& operator=(ContentLogFileEndPoint const&);
30 ContentLogFileEndPoint(ContentLogFileEndPoint const&);
31 ContentLogFileEndPoint();
32
33public:
34 // virtual functions
35 // NOLINTBEGIN
36 virtual ~ContentLogFileEndPoint() /*override*/;
37
38 virtual void log(::LogArea const area, ::LogLevel const level, char const* message) /*override*/;
39
40 virtual void flush() /*override*/;
41
42 virtual void setEnabled(bool newState) /*override*/;
43
44 virtual bool isEnabled() const /*override*/;
45
46 virtual bool logOnlyOnce() const /*override*/;
47 // NOLINTEND
48
49public:
50 // member functions
51 // NOLINTBEGIN
53 ::Core::Path debugLogDirectory,
54 ::Core::Path fileName,
55 ::std::optional<::LogLevel> minLogLevel
56 );
57 // NOLINTEND
58
59public:
60 // static variables
61 // NOLINTBEGIN
62 MCNAPI static ::std::string_view const& FILE_NAME();
63 // NOLINTEND
64
65public:
66 // constructor thunks
67 // NOLINTBEGIN
68 MCNAPI void* $ctor(::Core::Path debugLogDirectory, ::Core::Path fileName, ::std::optional<::LogLevel> minLogLevel);
69 // NOLINTEND
70
71public:
72 // destructor thunk
73 // NOLINTBEGIN
74 MCNAPI void $dtor();
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
90
91 // NOLINTEND
92
93public:
94 // vftables
95 // NOLINTBEGIN
96 MCNAPI static void** $vftableForLogEndPoint();
97
99 // NOLINTEND
100};
Definition ContentLogEndPoint.h:11
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:10
Definition Alias.h:14