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 void writeValue(::Json::Value const& value);
37 // NOLINTEND
38
39public:
40 // destructor thunk
41 // NOLINTBEGIN
42 MCAPI void $dtor();
43 // NOLINTEND
44
45public:
46 // virtual function thunks
47 // NOLINTBEGIN
48 MCAPI ::std::string $write(::Json::Value const& root);
49 // NOLINTEND
50
51public:
52 // vftables
53 // NOLINTBEGIN
54 MCAPI static void** $vftable();
55 // NOLINTEND
56};
57
58} // namespace Json
Definition FastWriter.h:15
Definition Value.h:16
Definition Writer.h:12