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
12class EnumerationValueFormatter : public IntegerValueFormatter {
13public:
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