Make UEFI boot-platform build again
[haiku.git] / headers / private / debugger / value / values / EnumerationValue.h
blob915f1897ac9a595ed7127e2bc7d9255ac1428b90
1 /*
2 * Copyright 2009, Ingo Weinhold, ingo_weinhold@gmx.de.
3 * Distributed under the terms of the MIT License.
4 */
5 #ifndef ENUMERATION_VALUE_H
6 #define ENUMERATION_VALUE_H
9 #include "IntegerValue.h"
12 class EnumerationType;
15 class EnumerationValue : public IntegerValue {
16 public:
17 EnumerationValue(EnumerationType* type,
18 const BVariant& value);
19 virtual ~EnumerationValue();
21 EnumerationType* GetType() const
22 { return fType; }
24 virtual bool ToString(BString& _string) const;
26 private:
27 EnumerationType* fType;
31 #endif // ENUMERATION_VALUE_H