Exemplo n.º 1
0
bool Value::operator!= (const Value& other) const
{
    return value != other.value && value->getValue() != other.getValue();
}
Exemplo n.º 2
0
bool Value::operator== (const Value& other) const
{
    return value == other.value || value->getValue() == other.getValue();
}
Exemplo n.º 3
0
Value::operator var() const
{
    return value->getValue();
}
Exemplo n.º 4
0
String Value::toString() const
{
    return value->getValue().toString();
}
Exemplo n.º 5
0
//==============================================================================
var Value::getValue() const
{
    return value->getValue();
}