LeviLamina
Loading...
Searching...
No Matches
PaneContainer.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/scripting/runtime/Result_deprecated.h"
7#include "mc/editor/datastore/EventType.h"
8#include "mc/editor/datastore/container/Container.h"
9
10// auto generated forward declare list
11// clang-format off
12namespace Editor::DataStore { class PayloadEventDispatcher; }
13namespace Editor::DataStore { struct PayloadDescription; }
14namespace Json { class Value; }
15// clang-format on
16
17namespace Editor::DataStore {
18
19class PaneContainer : public ::Editor::DataStore::Container {
20public:
21 // member variables
22 // NOLINTBEGIN
24 // NOLINTEND
25
26public:
27 // prevent constructor by default
28 PaneContainer& operator=(PaneContainer const&);
29 PaneContainer(PaneContainer const&);
30 PaneContainer();
31
32public:
33 // virtual functions
34 // NOLINTBEGIN
35 virtual ~PaneContainer() /*override*/ = default;
36
37 virtual void clear() /*override*/;
38 // NOLINTEND
39
40public:
41 // member functions
42 // NOLINTBEGIN
44
45 MCNAPI ::Scripting::Result_deprecated<void> handleDataEvent(
46 ::Editor::DataStore::EventType eventType,
47 ::Json::Value const& payload,
49 );
50 // NOLINTEND
51
52public:
53 // static variables
54 // NOLINTBEGIN
55 MCNAPI static ::std::add_lvalue_reference_t<char const[]> TAG_DATA();
56 // NOLINTEND
57
58public:
59 // constructor thunks
60 // NOLINTBEGIN
61 MCNAPI void* $ctor(::Editor::DataStore::PayloadEventDispatcher& dispatcher, bool isServer);
62 // NOLINTEND
63
64public:
65 // virtual function thunks
66 // NOLINTBEGIN
67 MCNAPI void $clear();
68
69
70 // NOLINTEND
71
72public:
73 // vftables
74 // NOLINTBEGIN
75 MCNAPI static void** $vftable();
76 // NOLINTEND
77};
78
79} // namespace Editor::DataStore
Definition Container.h:7
MCAPI PaneContainer(::Editor::DataStore::PayloadEventDispatcher &dispatcher, bool isServer)
MCAPI void * $ctor(::Editor::DataStore::PayloadEventDispatcher &dispatcher, bool isServer)
static MCAPI ::std::add_lvalue_reference_t< char const[]> TAG_DATA()
static MCAPI void ** $vftable()
MCAPI ::Scripting::Result_deprecated< void > handleDataEvent(::Editor::DataStore::EventType eventType, ::Json::Value const &payload, ::Editor::DataStore::PayloadDescription const &desc)
Definition PayloadEventDispatcher.h:17
Definition Value.h:16
Definition PayloadDescription.h:12
Definition Alias.h:14