本文整理汇总了C++中JSONValue::SetType方法的典型用法代码示例。如果您正苦于以下问题:C++ JSONValue::SetType方法的具体用法?C++ JSONValue::SetType怎么用?C++ JSONValue::SetType使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类JSONValue
的用法示例。
在下文中一共展示了JSONValue::SetType方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: ToJSONValue
// Convert rapidjson value to JSON value.
static void ToJSONValue(JSONValue& jsonValue, const rapidjson::Value& rapidjsonValue)
{
switch (rapidjsonValue.GetType())
{
case kNullType:
// Reset to null type
jsonValue.SetType(JSON_NULL);
break;
case kFalseType:
jsonValue = false;
break;
case kTrueType:
jsonValue = true;
break;
case kNumberType:
if (rapidjsonValue.IsInt())
jsonValue = rapidjsonValue.GetInt();
else if (rapidjsonValue.IsUint())
jsonValue = rapidjsonValue.GetUint();
else
jsonValue = rapidjsonValue.GetDouble();
break;
case kStringType:
jsonValue = rapidjsonValue.GetString();
break;
case kArrayType:
{
jsonValue.Resize(rapidjsonValue.Size());
for (unsigned i = 0; i < rapidjsonValue.Size(); ++i)
{
ToJSONValue(jsonValue[i], rapidjsonValue[i]);
}
}
break;
case kObjectType:
{
jsonValue.SetType(JSON_OBJECT);
for (rapidjson::Value::ConstMemberIterator i = rapidjsonValue.MemberBegin(); i != rapidjsonValue.MemberEnd(); ++i)
{
JSONValue& value = jsonValue[String(i->name.GetString())];
ToJSONValue(value, i->value);
}
}
break;
default:
break;
}
}
示例2: SaveSettingsInternal
bool NETAssemblyImporter::SaveSettingsInternal(JSONValue& jsonRoot)
{
if (!AssetImporter::SaveSettingsInternal(jsonRoot))
return false;
JSONValue import;
import.SetType(JSON_OBJECT);
import.Set("AssemblyJSON", assemblyJSON_);
jsonRoot.Set("NETAssemblyImporter", import);
return true;
}
示例3: InspectAssembly
bool NETToolSystem::InspectAssembly(const String& pathToAssembly, JSONValue &json)
{
json.SetType(JSON_NULL);
if (!inspectAssemblyFunction_)
return false;
String jsonString = inspectAssemblyFunction_(pathToAssembly.CString());
if (!jsonString.Length())
return false;
return JSONFile::ParseJSON(jsonString, json);
}