LeviLamina
Loading...
Searching...
No Matches
LogContent.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace Editor {
6
7struct LogContent {
8public:
9 // member variables
10 // NOLINTBEGIN
13 // NOLINTEND
14
15public:
16 // prevent constructor by default
17 LogContent& operator=(LogContent const&);
18 LogContent();
19
20public:
21 // member functions
22 // NOLINTBEGIN
24
25#ifdef LL_PLAT_C
26 MCNAPI ::std::string const& getMessageStr() const;
27
28 MCNAPI ::std::string const& getSubMessageStr() const;
29#endif
30
31 MCNAPI ~LogContent();
32 // NOLINTEND
33
34public:
35 // constructor thunks
36 // NOLINTBEGIN
37 MCNAPI void* $ctor(::Editor::LogContent const&);
38 // NOLINTEND
39
40public:
41 // destructor thunk
42 // NOLINTBEGIN
43 MCNAPI void $dtor();
44 // NOLINTEND
45};
46
47} // namespace Editor
Definition LogContent.h:7
MCAPI void $dtor()
MCAPI LogContent(::Editor::LogContent const &)
MCAPI void * $ctor(::Editor::LogContent const &)
Definition Alias.h:14