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 MCNAPI_C ::std::string getAreaTagsString() const;
35
36 MCNAPI ::Editor::LogMessage& operator=(::Editor::LogMessage&&);
37
38 MCNAPI ::Editor::LogMessage& operator=(::Editor::LogMessage const&);
39
40 MCNAPI ~LogMessage();
41 // NOLINTEND
42
43public:
44 // static functions
45 // NOLINTBEGIN
46 MCNAPI static void bindType(::cereal::ReflectionCtx& ctx);
47 // NOLINTEND
48
49public:
50 // constructor thunks
51 // NOLINTBEGIN
52 MCNAPI void* $ctor(::Editor::LogMessage&&);
53 // NOLINTEND
54
55public:
56 // destructor thunk
57 // NOLINTBEGIN
58 MCNAPI void $dtor();
59 // NOLINTEND
60};
61
62} // 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