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