LeviLamina
Loading...
Searching...
No Matches
SchemaWriter.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7namespace cereal { class PropertyReader; }
8namespace cereal { struct NullType; }
9// clang-format on
10
11namespace cereal {
12
14public:
15 // virtual functions
16 // NOLINTBEGIN
17 // vIndex: 0
18 virtual ~SchemaWriter() = default;
19
20 // vIndex: 13
21 virtual bool write(::cereal::NullType, ::cereal::PropertyReader const&) = 0;
22
23 // vIndex: 12
24 virtual bool write(bool, ::cereal::PropertyReader const&) = 0;
25
26 // vIndex: 11
27 virtual bool write(char, ::cereal::PropertyReader const&) = 0;
28
29 // vIndex: 10
30 virtual bool write(uchar, ::cereal::PropertyReader const&) = 0;
31
32 // vIndex: 9
33 virtual bool write(short, ::cereal::PropertyReader const&) = 0;
34
35 // vIndex: 8
36 virtual bool write(ushort, ::cereal::PropertyReader const&) = 0;
37
38 // vIndex: 7
39 virtual bool write(int, ::cereal::PropertyReader const&) = 0;
40
41 // vIndex: 6
42 virtual bool write(uint, ::cereal::PropertyReader const&) = 0;
43
44 // vIndex: 5
45 virtual bool write(int64, ::cereal::PropertyReader const&) = 0;
46
47 // vIndex: 4
48 virtual bool write(uint64, ::cereal::PropertyReader const&) = 0;
49
50 // vIndex: 3
51 virtual bool write(float, ::cereal::PropertyReader const&) = 0;
52
53 // vIndex: 2
54 virtual bool write(double, ::cereal::PropertyReader const&) = 0;
55
56 // vIndex: 1
57 virtual bool write(::std::string_view const, ::cereal::PropertyReader const&) = 0;
58
59 // vIndex: 14
60 virtual bool pushMember(::std::string_view const, ::cereal::PropertyReader const&) = 0;
61
62 // vIndex: 15
63 virtual void popMember() = 0;
64
65 // vIndex: 16
66 virtual bool openObject(::cereal::PropertyReader const&) = 0;
67
68 // vIndex: 17
69 virtual bool openArray(uint64, ::cereal::PropertyReader const&) = 0;
70
71 // vIndex: 18
72 virtual void close() = 0;
73
74 // vIndex: 19
75 virtual bool isSequenceWriter() const;
76 // NOLINTEND
77
78public:
79 // destructor thunk
80 // NOLINTBEGIN
81
82 // NOLINTEND
83
84public:
85 // virtual function thunks
86 // NOLINTBEGIN
87 MCFOLD bool $isSequenceWriter() const;
88 // NOLINTEND
89};
90
91} // namespace cereal
Definition PropertyReader.h:7
Definition NullType.h:7
Definition SchemaWriter.h:13