LeviLamina
Loading...
Searching...
No Matches
LogMessage.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7namespace cereal { struct ReflectionCtx; }
8// clang-format on
9
10namespace Editor {
11
12class LogMessage {
13public:
14 // member variables
15 // NOLINTBEGIN
22 // NOLINTEND
23
24public:
25 // prevent constructor by default
26 LogMessage(LogMessage const&);
27 LogMessage();
28
29public:
30 // member functions
31 // NOLINTBEGIN
33
34#ifdef LL_PLAT_C
35 MCNAPI ::std::string getAreaTagsString() const;
36#endif
37
38 MCNAPI ::Editor::LogMessage& operator=(::Editor::LogMessage&&);
39
40 MCNAPI ::Editor::LogMessage& operator=(::Editor::LogMessage const&);
41
42 MCNAPI ~LogMessage();
43 // NOLINTEND
44
45public:
46 // static functions
47 // NOLINTBEGIN
48 MCNAPI static void bindType(::cereal::ReflectionCtx& ctx);
49 // NOLINTEND
50
51public:
52 // constructor thunks
53 // NOLINTBEGIN
54 MCNAPI void* $ctor(::Editor::LogMessage&&);
55 // NOLINTEND
56
57public:
58 // destructor thunk
59 // NOLINTBEGIN
60 MCNAPI void $dtor();
61 // NOLINTEND
62};
63
64} // namespace Editor
Definition LogMessage.h:12
MCAPI void $dtor()
MCAPI::Editor::LogMessage & operator=(::Editor::LogMessage &&)
static MCAPI void bindType(::cereal::ReflectionCtx &ctx)
MCAPI void * $ctor(::Editor::LogMessage &&)
MCAPI::Editor::LogMessage & operator=(::Editor::LogMessage const &)
MCAPI LogMessage(::Editor::LogMessage &&)
Definition ReflectionCtx.h:11
Definition ctx.h:5
Definition Alias.h:14