LeviLamina
Loading...
Searching...
No Matches
FileChunk.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/util/FileChunkInfo.h"
7
8struct FileChunk {
9public:
10 // member variables
11 // NOLINTBEGIN
12 ::ll::TypedStorage<8, 24, ::std::vector<uchar>> data;
13 ::ll::TypedStorage<8, 24, ::FileChunkInfo> info;
14 // NOLINTEND
15
16#ifdef LL_PLAT_S
17#else // LL_PLAT_C
18public:
19 // prevent constructor by default
20 FileChunk& operator=(FileChunk const&);
21 FileChunk(FileChunk const&);
22 FileChunk();
23
24#endif
25public:
26 // member functions
27 // NOLINTBEGIN
28#ifdef LL_PLAT_C
29 MCNAPI ::FileChunk& operator=(::FileChunk&&);
30
31 MCNAPI ~FileChunk();
32#endif
33 // NOLINTEND
34
35public:
36 // destructor thunk
37 // NOLINTBEGIN
38#ifdef LL_PLAT_C
39 MCNAPI void $dtor();
40#endif
41 // NOLINTEND
42};