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();
18
19public:
20 // member functions
21 // NOLINTBEGIN
23
25
26 MCNAPI ::Editor::LogContent& operator=(::Editor::LogContent&&);
27
28 MCNAPI ::Editor::LogContent& operator=(::Editor::LogContent const&);
29
30 MCNAPI ~LogContent();
31 // NOLINTEND
32
33public:
34 // constructor thunks
35 // NOLINTBEGIN
36 MCNAPI void* $ctor(::Editor::LogContent&&);
37
38 MCNAPI void* $ctor(::Editor::LogContent const&);
39 // NOLINTEND
40
41public:
42 // destructor thunk
43 // NOLINTBEGIN
44 MCNAPI void $dtor();
45 // NOLINTEND
46};
47
48} // namespace Editor
Definition LogContent.h:7
MCAPI void $dtor()
MCAPI void * $ctor(::Editor::LogContent &&)
MCAPI::Editor::LogContent & operator=(::Editor::LogContent const &)
MCAPI LogContent(::Editor::LogContent &&)
MCAPI::Editor::LogContent & operator=(::Editor::LogContent &&)
MCAPI LogContent(::Editor::LogContent const &)
MCAPI void * $ctor(::Editor::LogContent const &)
Definition Alias.h:14