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
30public:
31 // member variables
32 // NOLINTBEGIN
34 // NOLINTEND
35
36public:
37 // prevent constructor by default
38 CurrentlyOwnedArrayProperties& operator=(CurrentlyOwnedArrayProperties const&);
39 CurrentlyOwnedArrayProperties(CurrentlyOwnedArrayProperties const&);
40 CurrentlyOwnedArrayProperties();
41};
42
43} // namespace Scripting::QuickJS
Definition CurrentlyOwnedArrayProperties.h:15
Definition Alias.h:14