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
19public:
20 // member variables
21 // NOLINTBEGIN
23 // NOLINTEND
24
25public:
26 // prevent constructor by default
27 PaneContainer& operator=(PaneContainer const&);
30
31public:
32 // virtual functions
33 // NOLINTBEGIN
34 // vIndex: 0
35 virtual ~PaneContainer() /*override*/ = default;
36
37 // vIndex: 1
38 virtual void clear() /*override*/;
39 // NOLINTEND
40
41public:
42 // member functions
43 // NOLINTBEGIN
44 MCNAPI ::Scripting::Result_deprecated<void> handleDataEvent(
45 ::Editor::DataStore::EventType eventType,
46 ::Json::Value const& payload,
48 );
49 // NOLINTEND
50
51public:
52 // static variables
53 // NOLINTBEGIN
54 MCNAPI static ::std::add_lvalue_reference_t<char const[]> TAG_DATA();
55 // NOLINTEND
56
57public:
58 // virtual function thunks
59 // NOLINTBEGIN
60 MCNAPI void $clear();
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
Definition PaneContainer.h:18
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