LeviLamina
Loading...
Searching...
No Matches
BinaryLoader.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/cereal/BasicLoader.h"
7#include "mc/deps/cereal/BinarySchemaReader.h"
8
9// auto generated forward declare list
10// clang-format off
12namespace cereal { struct ReflectionCtx; }
13// clang-format on
14
15namespace cereal {
16
17class BinaryLoader : public ::cereal::BasicLoader {
18public:
19 // member variables
20 // NOLINTBEGIN
21 ::ll::TypedStorage<8, 24, ::cereal::BinarySchemaReader> mReader;
22 // NOLINTEND
23
24public:
25 // prevent constructor by default
26 BinaryLoader();
27
28public:
29 // member functions
30 // NOLINTBEGIN
31 MCAPI BinaryLoader(::ReadOnlyBinaryStream& stream, ::cereal::ReflectionCtx const& reflectionCtx);
32 // NOLINTEND
33
34public:
35 // constructor thunks
36 // NOLINTBEGIN
37 MCAPI void* $ctor(::ReadOnlyBinaryStream& stream, ::cereal::ReflectionCtx const& reflectionCtx);
38 // NOLINTEND
39
40public:
41 // vftables
42 // NOLINTBEGIN
43 MCNAPI static void** $vftable();
44 // NOLINTEND
45};
46
47} // namespace cereal
Definition ReadOnlyBinaryStream.h:8
Definition BasicLoader.h:21
static MCAPI void ** $vftable()
Definition ReflectionCtx.h:11