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