1/*
2 * Copyright 2015, Rene Gollent, rene@gollent.com.
3 * Distributed under the terms of the MIT License.
4 */
5#ifndef STRING_VALUE_FORMATTER_H
6#define STRING_VALUE_FORMATTER_H
7
8
9#include "ValueFormatter.h"
10
11
12class Settings;
13class Value;
14
15
16class StringValueFormatter : public ValueFormatter {
17public:
18								StringValueFormatter();
19	virtual						~StringValueFormatter();
20
21	virtual	Settings*			GetSettings() const
22									{ return NULL; }
23
24	virtual	status_t			FormatValue(Value* value, BString& _output);
25};
26
27
28#endif	// STRING_VALUE_FORMATTER_H
29