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