2 * Copyright 2009, Ingo Weinhold, ingo_weinhold@gmx.de.
3 * Distributed under the terms of the MIT License.
5 #ifndef ENUMERATION_VALUE_H
6 #define ENUMERATION_VALUE_H
9 #include "IntegerValue.h"
12 class EnumerationType
;
15 class EnumerationValue
: public IntegerValue
{
17 EnumerationValue(EnumerationType
* type
,
18 const BVariant
& value
);
19 virtual ~EnumerationValue();
21 EnumerationType
* GetType() const
24 virtual bool ToString(BString
& _string
) const;
27 EnumerationType
* fType
;
31 #endif // ENUMERATION_VALUE_H