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