LeviLamina
Loading...
Searching...
No Matches
MinecraftJsonStyledWriter.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
16public:
17 // MinecraftJsonStyledWriter inner types define
18 using ChildValues = ::std::vector<::std::string>;
19
20public:
21 // member variables
22 // NOLINTBEGIN
23 ::ll::TypedStorage<8, 24, ::std::vector<::std::string>> mChildValues;
24 ::ll::TypedStorage<8, 32, ::std::string> mDocument;
25 ::ll::TypedStorage<8, 32, ::std::string> mIndentString;
26 ::ll::TypedStorage<4, 4, int> mRightMargin;
27 ::ll::TypedStorage<4, 4, int> mIndentSize;
28 ::ll::TypedStorage<1, 1, bool> mAddChildValues;
29 // NOLINTEND
30
31public:
32 // virtual functions
33 // NOLINTBEGIN
34 // vIndex: 0
35 virtual ~MinecraftJsonStyledWriter() /*override*/ = default;
36
37 // vIndex: 1
38 virtual ::std::string write(::Json::Value const&) /*override*/;
39 // NOLINTEND
40
41public:
42 // destructor thunk
43 // NOLINTBEGIN
44
45 // NOLINTEND
46
47public:
48 // virtual function thunks
49 // NOLINTBEGIN
50
51 // NOLINTEND
52};
53
54} // namespace Json
Definition MinecraftJsonStyledWriter.h:15
Definition Value.h:16
Definition Writer.h:12