示例#1
0
void JsonWriter::SetValue(JsonValue& lpJValue)
{
	m_RootValue.append(lpJValue.GetJValue());	
}
示例#2
0
void JsonWriter::SetValue(char* lpszKeyText, JsonValue& lpJValue)
{
	m_RootValue[lpszKeyText] = lpJValue.GetJValue();	
}