btrfs: [] on the end of a struct field is a variable length array.
[haiku.git] / headers / private / debugger / value / value_formatters / StringValueFormatter.h
blob2d5fbf25d1800d848288ef2efa4ee9f0faa4de89
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
9 #include "ValueFormatter.h"
12 class Settings;
13 class Value;
16 class StringValueFormatter : public ValueFormatter {
17 public:
18 StringValueFormatter();
19 virtual ~StringValueFormatter();
21 virtual Settings* GetSettings() const
22 { return NULL; }
24 virtual status_t FormatValue(Value* value, BString& _output);
28 #endif // STRING_VALUE_FORMATTER_H