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 { struct PayloadDescription; }
13namespace Json { class Value; }
14// clang-format on
15
16namespace Editor::DataStore {
17
18class PaneContainer : public ::Editor::DataStore::Container {
19public:
20 // member variables
21 // NOLINTBEGIN
23 // NOLINTEND
24
25public:
26 // prevent constructor by default
27 PaneContainer& operator=(PaneContainer const&);
28 PaneContainer(PaneContainer const&);
29 PaneContainer();
30
31public:
32 // virtual functions
33 // NOLINTBEGIN
34 virtual ~PaneContainer() /*override*/ = default;
35
36 virtual void clear() /*override*/;
37 // NOLINTEND
38
39public:
40 // member functions
41 // NOLINTBEGIN
42 MCNAPI ::Scripting::Result_deprecated<void> handleDataEvent(
43 ::Editor::DataStore::EventType eventType,
44 ::Json::Value const& payload,
46 );
47 // NOLINTEND
48
49public:
50 // static variables
51 // NOLINTBEGIN
52 MCNAPI static ::std::add_lvalue_reference_t<char const[]> TAG_DATA();
53 // NOLINTEND
54
55public:
56 // virtual function thunks
57 // NOLINTBEGIN
58 MCNAPI void $clear();
59
60
61 // NOLINTEND
62
63public:
64 // vftables
65 // NOLINTBEGIN
66 MCNAPI static void** $vftable();
67 // NOLINTEND
68};
69
70} // namespace Editor::DataStore
Definition Container.h:7
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 Value.h:16
Definition PayloadDescription.h:7
Definition Alias.h:14