LeviLamina
Loading...
Searching...
No Matches
StyledStreamWriter.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7namespace Json { class Value; }
8// clang-format on
9
10namespace Json {
11
13public:
14 // StyledStreamWriter inner types define
15 using ChildValues = ::std::vector<::std::string>;
16
17public:
18 // member variables
19 // NOLINTBEGIN
20 ::ll::TypedStorage<8, 24, ::std::vector<::std::string>> childValues_;
21 ::ll::TypedStorage<8, 8, ::std::ostream*> document_;
22 ::ll::TypedStorage<8, 32, ::std::string> indentString_;
23 ::ll::TypedStorage<4, 4, int> rightMargin_;
24 ::ll::TypedStorage<8, 32, ::std::string> indentation_;
25 ::ll::TypedStorage<1, 1, bool> addChildValues_;
26 // NOLINTEND
27
28public:
29 // prevent constructor by default
31
32public:
33 // member functions
34 // NOLINTBEGIN
35 MCNAPI explicit StyledStreamWriter(::std::string indentation);
36
37 MCNAPI void indent();
38
39 MCNAPI bool isMultineArray(::Json::Value const& value);
40
41 MCNAPI void pushValue(::std::string const& value);
42
43 MCNAPI void unindent();
44
45 MCNAPI void writeArrayValue(::Json::Value const& value);
46
47 MCNAPI void writeValue(::Json::Value const& value);
48
50 // NOLINTEND
51
52public:
53 // constructor thunks
54 // NOLINTBEGIN
55 MCNAPI void* $ctor(::std::string indentation);
56 // NOLINTEND
57
58public:
59 // destructor thunk
60 // NOLINTBEGIN
61 MCNAPI void $dtor();
62 // NOLINTEND
63};
64
65} // namespace Json
Definition StyledStreamWriter.h:12
MCAPI void writeArrayValue(::Json::Value const &value)
MCAPI StyledStreamWriter(::std::string indentation)
MCAPI void writeValue(::Json::Value const &value)
MCAPI bool isMultineArray(::Json::Value const &value)
MCAPI void pushValue(::std::string const &value)
MCAPI void * $ctor(::std::string indentation)
Definition Value.h:16