2 * Copyright 2009, Ingo Weinhold, ingo_weinhold@gmx.de.
3 * Distributed under the terms of the MIT License.
14 class Value
: public BReferenceable
{
18 virtual bool ToString(BString
& _string
) const = 0;
19 virtual bool ToVariant(BVariant
& _value
) const = 0;
21 virtual bool operator==(const Value
& other
) const = 0;
22 inline bool operator!=(const Value
& other
) const
23 { return !(*this == other
); }