LeviLamina
Loading...
Searching...
No Matches
Scene.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 Scene {
13public:
14 // member variables
15 // NOLINTBEGIN
19 // NOLINTEND
20
21#ifdef LL_PLAT_S
22public:
23 // prevent constructor by default
24 Scene& operator=(Scene const&);
25 Scene(Scene const&);
26 Scene();
27
28#else // LL_PLAT_C
29public:
30 // prevent constructor by default
31 Scene& operator=(Scene const&);
32
33#endif
34public:
35 // member functions
36 // NOLINTBEGIN
37#ifdef LL_PLAT_C
38 MCNAPI Scene();
39
40 MCNAPI Scene(::glTF::Scene const&);
41
42 MCNAPI ::Json::Value serialize() const;
43
44 MCNAPI ~Scene();
45#endif
46 // NOLINTEND
47
48public:
49 // constructor thunks
50 // NOLINTBEGIN
51#ifdef LL_PLAT_C
52 MCNAPI void* $ctor();
53
54 MCNAPI void* $ctor(::glTF::Scene const&);
55#endif
56 // NOLINTEND
57
58public:
59 // destructor thunk
60 // NOLINTBEGIN
61#ifdef LL_PLAT_C
62 MCNAPI void $dtor();
63#endif
64 // NOLINTEND
65};
66
67} // namespace glTF
Definition Value.h:16
Definition Scene.h:12
Definition Alias.h:14
Definition serialize.h:11