LeviLamina
Loading...
Searching...
No Matches
JsonSaver.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/cereal/BasicSaver.h"
7
8// auto generated forward declare list
9// clang-format off
10namespace cereal { struct ReflectionCtx; }
11namespace cereal { struct SaverConfig; }
12// clang-format on
13
14namespace cereal {
15
17public:
18 // member variables
19 // NOLINTBEGIN
23 // NOLINTEND
24
25public:
26 // prevent constructor by default
27 JsonSaver& operator=(JsonSaver const&);
28 JsonSaver(JsonSaver const&);
29 JsonSaver();
30
31public:
32 // virtual functions
33 // NOLINTBEGIN
34 // vIndex: 0
35 virtual ~JsonSaver() /*override*/;
36 // NOLINTEND
37
38public:
39 // member functions
40 // NOLINTBEGIN
42
43 MCNAPI JsonSaver(::cereal::ReflectionCtx const& reflectionCtx, char indentChar, uint indentAmount);
44
45 MCNAPI ::std::string toString();
46 // NOLINTEND
47
48public:
49 // constructor thunks
50 // NOLINTBEGIN
52
53 MCNAPI void* $ctor(::cereal::ReflectionCtx const& reflectionCtx, char indentChar, uint indentAmount);
54 // NOLINTEND
55
56public:
57 // destructor thunk
58 // NOLINTBEGIN
59 MCNAPI void $dtor();
60 // NOLINTEND
61
62public:
63 // vftables
64 // NOLINTBEGIN
65 MCNAPI static void** $vftable();
66 // NOLINTEND
67};
68
69} // namespace cereal
Definition BasicSaver.h:17
Definition JsonSaver.h:16
MCAPI JsonSaver(::cereal::ReflectionCtx const &reflectionCtx, char indentChar, uint indentAmount)
MCAPI void * $ctor(::cereal::ReflectionCtx const &reflectionCtx, char indentChar, uint indentAmount)
MCAPI void $dtor()
static MCAPI void ** $vftable()
MCAPI void * $ctor(::cereal::ReflectionCtx const &, ::cereal::SaverConfig const &)
MCAPI::std::string toString()
MCAPI JsonSaver(::cereal::ReflectionCtx const &, ::cereal::SaverConfig const &)
Definition ReflectionCtx.h:11
Definition SaverConfig.h:7
Definition Alias.h:14