LeviLamina
Loading...
Searching...
No Matches
ContextMessageLoggerOptions.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5class ContextMessageLoggerOptions {
6public:
7 // member variables
8 // NOLINTBEGIN
14 // NOLINTEND
15
16#ifdef LL_PLAT_S
17public:
18 // prevent constructor by default
19 ContextMessageLoggerOptions& operator=(ContextMessageLoggerOptions const&);
20 ContextMessageLoggerOptions(ContextMessageLoggerOptions const&);
21 ContextMessageLoggerOptions();
22
23#else // LL_PLAT_C
24public:
25 // prevent constructor by default
26 ContextMessageLoggerOptions& operator=(ContextMessageLoggerOptions const&);
27 ContextMessageLoggerOptions(ContextMessageLoggerOptions const&);
28
29#endif
30public:
31 // member functions
32 // NOLINTBEGIN
33#ifdef LL_PLAT_C
34 MCNAPI ContextMessageLoggerOptions();
35#endif
36 // NOLINTEND
37
38public:
39 // constructor thunks
40 // NOLINTBEGIN
41#ifdef LL_PLAT_C
42 MCNAPI void* $ctor();
43#endif
44 // NOLINTEND
45};
Definition Alias.h:14