LeviLamina
Loading...
Searching...
No Matches
ContextScopeListener.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/scripting/lifetime_registry/ILifetimeScopeListener.h"
7
8// auto generated forward declare list
9// clang-format off
10namespace Scripting { class LifetimeRegistry; }
11// clang-format on
12
13namespace Scripting::QuickJS {
14
15class ContextScopeListener : public ::Scripting::ILifetimeScopeListener {
16public:
17 // member variables
18 // NOLINTBEGIN
22 // NOLINTEND
23
24public:
25 // prevent constructor by default
26 ContextScopeListener& operator=(ContextScopeListener const&);
27 ContextScopeListener(ContextScopeListener const&);
28 ContextScopeListener();
29
30public:
31 // virtual functions
32 // NOLINTBEGIN
33 virtual ~ContextScopeListener() /*override*/ = default;
34
35 virtual void onPreLifetimeScopeDestroy(::Scripting::LifetimeRegistry& registry) /*override*/;
36
37 virtual void onPostLifetimeScopeDestroy(::Scripting::LifetimeRegistry&) /*override*/;
38 // NOLINTEND
39
40public:
41 // virtual function thunks
42 // NOLINTBEGIN
44
46
47
48 // NOLINTEND
49
50public:
51 // vftables
52 // NOLINTBEGIN
53 MCNAPI static void** $vftable();
54 // NOLINTEND
55};
56
57} // namespace Scripting::QuickJS
Definition ILifetimeScopeListener.h:12
Definition LifetimeRegistry.h:19
MCAPI void $onPreLifetimeScopeDestroy(::Scripting::LifetimeRegistry &registry)
MCAPI void $onPostLifetimeScopeDestroy(::Scripting::LifetimeRegistry &)
Definition Alias.h:14