2 * Copyright 2010, Rene Gollent, rene@gollent.com.
3 * Distributed under the terms of the MIT License.
12 class StringValue
: public Value
{
14 StringValue(const char* value
);
15 virtual ~StringValue();
17 BString
GetValue() const
20 virtual bool ToString(BString
& _string
) const;
21 virtual bool ToVariant(BVariant
& _value
) const;
23 virtual bool operator==(const Value
& other
) const;
30 #endif // STRING_VALUE_H