blob: d315dbed8b50e876c40713b5cf371ae35108c0ed (
plain) (
tree)
|
|
#pragma once
// fwd:
namespace Json
{
class Value;
}
namespace JsonUtils
{
AString WriteFastString(const Json::Value & a_Root);
AString WriteStyledString(const Json::Value & a_Root);
bool ParseString(const AString & a_JsonStr, Json::Value & a_Root, AString * a_ErrorMsg = nullptr);
}
|