LeviLamina
Loading...
Searching...
No Matches
BufferView.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace glTF {
6
7struct BufferView {
8public:
9 // member variables
10 // NOLINTBEGIN
16 // NOLINTEND
17
18public:
19 // prevent constructor by default
20 BufferView& operator=(BufferView const&);
21 BufferView(BufferView const&);
22 BufferView();
23
24public:
25 // member functions
26 // NOLINTBEGIN
27#ifdef LL_PLAT_C
28 MCNAPI ~BufferView();
29#endif
30 // NOLINTEND
31
32public:
33 // destructor thunk
34 // NOLINTBEGIN
35#ifdef LL_PLAT_C
36 MCNAPI void $dtor();
37#endif
38 // NOLINTEND
39};
40
41} // namespace glTF
Definition Alias.h:14