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
30public:
31 // prevent constructor by default
32 Node& operator=(Node const&);
33 Node(Node const&);
34 Node();
35
36public:
37 // member functions
38 // NOLINTBEGIN
39 MCNAPI_C ::Json::Value serialize() const;
40 // NOLINTEND
41
42public:
43 // constructor thunks
44 // NOLINTBEGIN
45 MCNAPI_C void* $ctor();
46
47 MCNAPI_C void* $ctor(::glTF::Node&&);
48
49 MCNAPI_C void* $ctor(::glTF::Node const&);
50 // NOLINTEND
51
52public:
53 // destructor thunk
54 // NOLINTBEGIN
55 MCNAPI_C void $dtor();
56 // NOLINTEND
57};
58
59} // namespace glTF
Definition Value.h:16
Definition Node.h:12
Definition Alias.h:14