vfs: check userland buffers before reading them.
[haiku.git] / headers / private / debugger / value / value_formatters / EnumerationValueFormatter.h
blobf9d1e11c497ea9abc1db8ad3a9b6bec2752f2a34
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
9 #include "IntegerValueFormatter.h"
12 class EnumerationValueFormatter : public IntegerValueFormatter {
13 public:
14 EnumerationValueFormatter(Config* config);
15 virtual ~EnumerationValueFormatter();
17 virtual status_t FormatValue(Value* value, BString& _output);
21 #endif // ENUMERATION_VALUE_FORMATTER_H