LeviLamina
Loading...
Searching...
No Matches
ScriptValue.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7namespace Scripting { class WeakLifetimeScope; }
8namespace Scripting { struct ContextId; }
9// clang-format on
10
11namespace Scripting {
12
13class ScriptValue {
14public:
15 // member variables
16 // NOLINTBEGIN
20 // NOLINTEND
21
22public:
23 // prevent constructor by default
24 ScriptValue& operator=(ScriptValue const&);
25 ScriptValue(ScriptValue const&);
26
27public:
28 // virtual functions
29 // NOLINTBEGIN
30 virtual ~ScriptValue();
31 // NOLINTEND
32
33public:
34 // member functions
35 // NOLINTBEGIN
36 MCNAPI ScriptValue();
37
38 MCNAPI ::Scripting::ContextId getContextId() const;
39
40 MCNAPI ::Scripting::WeakLifetimeScope getWeakLifetimeScope() const;
41 // NOLINTEND
42
43public:
44 // constructor thunks
45 // NOLINTBEGIN
46 MCNAPI void* $ctor();
47 // NOLINTEND
48
49public:
50 // destructor thunk
51 // NOLINTBEGIN
52 MCNAPI void $dtor();
53 // NOLINTEND
54
55public:
56 // vftables
57 // NOLINTBEGIN
58 MCNAPI static void** $vftable();
59 // NOLINTEND
60};
61
62} // namespace Scripting
static MCAPI void ** $vftable()
MCAPI::Scripting::WeakLifetimeScope getWeakLifetimeScope() const
MCAPI void * $ctor()
MCAPI::Scripting::ContextId getContextId() const
Definition WeakLifetimeScope.h:14
Definition ContextId.h:7
Definition Alias.h:14