xref: /haiku/headers/private/debugger/value/value_formatters/EnumerationValueFormatter.h (revision faf79e7f783976326856422ff006b4c6ae9c3031)
1 /*
2  * Copyright 2015, Rene Gollent, rene@gollent.com.
3  * Distributed under the terms of the MIT License.
4  */
5 #ifndef ENUMERATION_VALUE_FORMATTER_H
6 #define ENUMERATION_VALUE_FORMATTER_H
7 
8 
9 #include "IntegerValueFormatter.h"
10 
11 
12 class EnumerationValueFormatter : public IntegerValueFormatter {
13 public:
14 								EnumerationValueFormatter(Config* config);
15 	virtual						~EnumerationValueFormatter();
16 
17 	virtual	status_t			FormatValue(Value* value, BString& _output);
18 };
19 
20 
21 #endif	// ENUMERATION_VALUE_FORMATTER_H
22