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
18MCAPI_C ::std::ostream& operator<<(::std::ostream& sout, ::Json::Value const& root);
19
20MCAPI ::std::string valueToQuotedString(char const* value);
21
22MCAPI ::std::string valueToString(double value);
23
24MCAPI ::std::string valueToString(int64 value);
25
26MCAPI ::std::string valueToString(uint64 value);
27// NOLINTEND
28
29} // namespace Json
Definition Value.h:16