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 virtual ~MinecraftJsonStyledWriter() /*override*/ = default;
35
36 virtual ::std::string write(::Json::Value const&) /*override*/;
37 // NOLINTEND
38
39public:
40 // virtual function thunks
41 // NOLINTBEGIN
42
43 // NOLINTEND
44};
45
46} // namespace Json
Definition MinecraftJsonStyledWriter.h:15
Definition Value.h:16
Definition Writer.h:12