LeviLamina
Loading...
Searching...
No Matches
Node.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7namespace Json { class Value; }
8// clang-format on
9
10namespace glTF {
11
12struct Node {
13public:
14 // member variables
15 // NOLINTBEGIN
28 // NOLINTEND
29
30#ifdef LL_PLAT_S
31public:
32 // prevent constructor by default
33 Node& operator=(Node const&);
34 Node(Node const&);
35 Node();
36
37#else // LL_PLAT_C
38public:
39 // prevent constructor by default
40 Node& operator=(Node const&);
41
42#endif
43public:
44 // member functions
45 // NOLINTBEGIN
46#ifdef LL_PLAT_C
47 MCNAPI Node();
48
49 MCNAPI Node(::glTF::Node&&);
50
51 MCNAPI Node(::glTF::Node const&);
52
53 MCNAPI ::Json::Value serialize() const;
54
55 MCNAPI ~Node();
56#endif
57 // NOLINTEND
58
59public:
60 // constructor thunks
61 // NOLINTBEGIN
62#ifdef LL_PLAT_C
63 MCNAPI void* $ctor();
64
65 MCNAPI void* $ctor(::glTF::Node&&);
66
67 MCNAPI void* $ctor(::glTF::Node const&);
68#endif
69 // NOLINTEND
70
71public:
72 // destructor thunk
73 // NOLINTBEGIN
74#ifdef LL_PLAT_C
75 MCNAPI void $dtor();
76#endif
77 // NOLINTEND
78};
79
80} // namespace glTF
Definition Value.h:16
Definition Node.h:12
Definition Alias.h:14
Definition serialize.h:11