LeviLamina
Loading...
Searching...
No Matches
FastWriter.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/json/Writer.h"
7
8// auto generated forward declare list
9// clang-format off
10namespace Json { class Value; }
11// clang-format on
12
13namespace Json {
14
15class FastWriter : public ::Json::Writer {
16public:
17 // member variables
18 // NOLINTBEGIN
19 ::ll::TypedStorage<8, 32, ::std::string> document_;
20 ::ll::TypedStorage<1, 1, bool> yamlCompatiblityEnabled_;
21 // NOLINTEND
22
23public:
24 // virtual functions
25 // NOLINTBEGIN
26 // vIndex: 0
27 virtual ~FastWriter() /*override*/;
28
29 // vIndex: 1
30 virtual ::std::string write(::Json::Value const& root) /*override*/;
31 // NOLINTEND
32
33public:
34 // member functions
35 // NOLINTBEGIN
36 MCAPI FastWriter();
37
38 MCAPI void writeValue(::Json::Value const& value);
39 // NOLINTEND
40
41public:
42 // constructor thunks
43 // NOLINTBEGIN
44 MCAPI void* $ctor();
45 // NOLINTEND
46
47public:
48 // destructor thunk
49 // NOLINTBEGIN
50 MCAPI void $dtor();
51 // NOLINTEND
52
53public:
54 // virtual function thunks
55 // NOLINTBEGIN
56 MCAPI ::std::string $write(::Json::Value const& root);
57 // NOLINTEND
58
59public:
60 // vftables
61 // NOLINTBEGIN
62 MCNAPI static void** $vftable();
63 // NOLINTEND
64};
65
66} // namespace Json
Definition FastWriter.h:15
static MCAPI void ** $vftable()
Definition Value.h:16
Definition Writer.h:12