LeviLamina
Loading...
Searching...
No Matches
JSON.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace Scripting {
6
7struct JSON {
8public:
9 // member variables
10 // NOLINTBEGIN
12 // NOLINTEND
13
14public:
15 // prevent constructor by default
16 JSON& operator=(JSON const&);
17 JSON(JSON const&);
18 JSON();
19
20public:
21 // member functions
22 // NOLINTBEGIN
23 MCNAPI ::Scripting::JSON& operator=(::Scripting::JSON&&);
24
25 MCNAPI ~JSON();
26 // NOLINTEND
27
28public:
29 // destructor thunk
30 // NOLINTBEGIN
31 MCNAPI void $dtor();
32 // NOLINTEND
33};
34
35} // namespace Scripting
Definition JSON.h:7
MCAPI void $dtor()
MCAPI::Scripting::JSON & operator=(::Scripting::JSON &&)
Definition Alias.h:14