LeviLamina
Loading...
Searching...
No Matches
CurrentlyOwnedArrayProperties.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace Scripting::QuickJS {
6
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 MCAPI ~Prop();
33 // NOLINTEND
34
35 public:
36 // destructor thunk
37 // NOLINTBEGIN
38 MCFOLD void $dtor();
39 // NOLINTEND
40 };
41
42public:
43 // member variables
44 // NOLINTBEGIN
46 // NOLINTEND
47
48public:
49 // prevent constructor by default
53};
54
55} // namespace Scripting::QuickJS
Definition CurrentlyOwnedArrayProperties.h:15
Definition CurrentlyOwnedArrayProperties.h:7
Definition Alias.h:14