LeviLamina
Loading...
Searching...
No Matches
LogMessageListPayload.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 LogMessageListPayload : public ::Editor::Network::NetworkPayload<::Editor::Network::LogMessageListPayload> {
17public:
18 // member variables
19 // NOLINTBEGIN
21 // NOLINTEND
22
23public:
24 // prevent constructor by default
25 LogMessageListPayload& operator=(LogMessageListPayload const&);
26 LogMessageListPayload(LogMessageListPayload const&);
27
28public:
29 // member functions
30 // NOLINTBEGIN
32
33 MCNAPI explicit LogMessageListPayload(::std::vector<::Editor::LogMessage> const& message);
34
35#ifdef LL_PLAT_C
36 MCNAPI ::std::vector<::Editor::LogMessage> const& getMessageList() 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(::std::vector<::Editor::LogMessage> const& 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(::std::vector<::Editor::LogMessage > const &message)
MCAPI LogMessageListPayload(::std::vector<::Editor::LogMessage > const &message)
Definition NetworkPayload.h:8
Definition ReflectionCtx.h:11
Definition ctx.h:5
Definition Alias.h:14