LeviLamina
Loading...
Searching...
No Matches
NBTSaver.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
10class CompoundTag;
11namespace cereal { struct ReflectionCtx; }
12namespace cereal { struct SaverConfig; }
13// clang-format on
14
15class NBTSaver : public ::cereal::BasicSaver {
16public:
17 // member variables
18 // NOLINTBEGIN
20 // NOLINTEND
21
22public:
23 // prevent constructor by default
24 NBTSaver& operator=(NBTSaver const&);
25 NBTSaver(NBTSaver const&);
26 NBTSaver();
27
28public:
29 // virtual functions
30 // NOLINTBEGIN
31 virtual ~NBTSaver() /*override*/;
32 // NOLINTEND
33
34public:
35 // member functions
36 // NOLINTBEGIN
38
39 MCNAPI ::CompoundTag getSavedCompoundTag();
40 // NOLINTEND
41
42public:
43 // constructor thunks
44 // NOLINTBEGIN
46 // NOLINTEND
47
48public:
49 // destructor thunk
50 // NOLINTBEGIN
51 MCNAPI void $dtor();
52 // NOLINTEND
53
54public:
55 // vftables
56 // NOLINTBEGIN
57 MCNAPI static void** $vftable();
58 // NOLINTEND
59};
Definition CompoundTag.h:23
MCAPI NBTSaver(::cereal::ReflectionCtx const &, ::cereal::SaverConfig const &)
MCAPI::CompoundTag getSavedCompoundTag()
MCAPI void $dtor()
MCAPI void * $ctor(::cereal::ReflectionCtx const &, ::cereal::SaverConfig const &)
static MCAPI void ** $vftable()
Definition BasicSaver.h:17
Definition ReflectionCtx.h:11
Definition SaverConfig.h:7
Definition Alias.h:14