LeviLamina
Loading...
Searching...
No Matches
StrictJsonLoader.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/ResultCode.h"
8
9// auto generated forward declare list
10// clang-format off
11namespace cereal { struct LoaderConfig; }
12namespace cereal { struct ReflectionCtx; }
13// clang-format on
14
15namespace cereal {
16
17class StrictJsonLoader : public ::cereal::BasicLoader {
18public:
19 // prevent constructor by default
20 StrictJsonLoader();
21
22public:
23 // member functions
24 // NOLINTBEGIN
25 MCAPI StrictJsonLoader(
26 ::cereal::ReflectionCtx const& reflectionCtx,
27 ::cereal::ResultCode errorCodes,
28 ::cereal::LoaderConfig const& config
29 );
30 // NOLINTEND
31
32public:
33 // constructor thunks
34 // NOLINTBEGIN
35 MCFOLD void* $ctor(
36 ::cereal::ReflectionCtx const& reflectionCtx,
37 ::cereal::ResultCode errorCodes,
38 ::cereal::LoaderConfig const& config
39 );
40 // NOLINTEND
41
42public:
43 // vftables
44 // NOLINTBEGIN
45 MCNAPI static void** $vftable();
46 // NOLINTEND
47};
48
49} // namespace cereal
Definition BasicLoader.h:21
static MCAPI void ** $vftable()
Definition LoaderConfig.h:7
Definition ReflectionCtx.h:11