Exemple #1
0
void JSONValue::AddIntRect(const IntRect& value)
{
    AddString(value.ToString());
}
Exemple #2
0
bool XMLElement::SetIntRect(const ea::string& name, const IntRect& value)
{
    return SetAttribute(name, value.ToString());
}
Exemple #3
0
void JSONValue::SetIntRect(const String& name, const IntRect& value)
{
    SetString(name, value.ToString());
}