LeviLamina
Loading...
Searching...
No Matches
Json.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// inner types
12enum : int {
13 UintToStringBufferSize = 25,
14};
15
16// functions
17// NOLINTBEGIN
18#ifdef LL_PLAT_C
19MCAPI ::std::ostream& operator<<(::std::ostream& sout, ::Json::Value const& root);
20#endif
21
22MCAPI ::std::string valueToQuotedString(char const* value);
23
24MCAPI ::std::string valueToString(double value);
25
26MCAPI ::std::string valueToString(int64 value);
27
28MCAPI ::std::string valueToString(uint64 value);
29// NOLINTEND
30
31} // namespace Json
Definition Value.h:16