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 const&);
50
51 MCNAPI ::Json::Value serialize() const;
52
53 MCNAPI ~Node();
54#endif
55 // NOLINTEND
56
57public:
58 // constructor thunks
59 // NOLINTBEGIN
60#ifdef LL_PLAT_C
61 MCNAPI void* $ctor();
62
63 MCNAPI void* $ctor(::glTF::Node const&);
64#endif
65 // NOLINTEND
66
67public:
68 // destructor thunk
69 // NOLINTBEGIN
70#ifdef LL_PLAT_C
71 MCNAPI void $dtor();
72#endif
73 // NOLINTEND
74};
75
76} // namespace glTF
Definition Value.h:16
Definition Node.h:12
Definition Alias.h:14
Definition serialize.h:11