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