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/core/string/HashedString.h"
7#include "mc/deps/scripting/runtime/Result_deprecated.h"
8#include "mc/editor/datastore/EventType.h"
9#include "mc/editor/datastore/container/Container.h"
10
11// auto generated forward declare list
12// clang-format off
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
43 MCNAPI ::Scripting::Result_deprecated<void> handleDataEvent(
44 ::Editor::DataStore::EventType eventType,
45 ::Json::Value const& payload,
47 );
48 // NOLINTEND
49
50public:
51 // static variables
52 // NOLINTBEGIN
53 MCNAPI static ::std::add_lvalue_reference_t<char const[]> TAG_DATA();
54 // NOLINTEND
55
56public:
57 // virtual function thunks
58 // NOLINTBEGIN
59 MCNAPI void $clear();
60
61
62 // NOLINTEND
63
64public:
65 // vftables
66 // NOLINTBEGIN
67 MCNAPI static void** $vftable();
68 // NOLINTEND
69};
70
71} // 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