LeviLamina
Loading...
Searching...
No Matches
CurrentlyOwnedArrayProperties.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace Scripting::QuickJS {
6
7struct CurrentlyOwnedArrayProperties {
8public:
9 // CurrentlyOwnedArrayProperties inner types declare
10 // clang-format off
11 struct Prop;
12 // clang-format on
13
14 // CurrentlyOwnedArrayProperties inner types define
15 struct Prop {
16 public:
17 // member variables
18 // NOLINTBEGIN
21 // NOLINTEND
22
23 public:
24 // prevent constructor by default
25 Prop& operator=(Prop const&);
26 Prop(Prop const&);
27 Prop();
28
29 public:
30 // member functions
31 // NOLINTBEGIN
32 MCNAPI ~Prop();
33 // NOLINTEND
34
35 public:
36 // destructor thunk
37 // NOLINTBEGIN
38 MCNAPI void $dtor();
39 // NOLINTEND
40 };
41
42public:
43 // member variables
44 // NOLINTBEGIN
46 // NOLINTEND
47
48public:
49 // prevent constructor by default
50 CurrentlyOwnedArrayProperties& operator=(CurrentlyOwnedArrayProperties const&);
51 CurrentlyOwnedArrayProperties(CurrentlyOwnedArrayProperties const&);
52 CurrentlyOwnedArrayProperties();
53
54public:
55 // member functions
56 // NOLINTBEGIN
57 MCNAPI ::Scripting::QuickJS::CurrentlyOwnedArrayProperties&
59 // NOLINTEND
60};
61
62} // namespace Scripting::QuickJS
Definition CurrentlyOwnedArrayProperties.h:15
Definition CurrentlyOwnedArrayProperties.h:7
MCAPI::Scripting::QuickJS::CurrentlyOwnedArrayProperties & operator=(::Scripting::QuickJS::CurrentlyOwnedArrayProperties &&)
Definition Alias.h:14