Exemplo n.º 1
0
ff::Dict ff::Dict::GetDict(StringRef name) const
{
	Value *value = GetValue(name);
	ValuePtr newValue;

	if (value && value->Convert(Value::Type::Dict, &newValue))
	{
		return newValue->AsDict();
	}

	return ff::Dict();
}