Files
haiku-beta6/headers/private/debugger/value/value_formatters/StringValueFormatter.h
T

29 lines
544 B
C++
Raw Normal View History

2015-06-06 17:24:09 -04:00
/*
* Copyright 2015, Rene Gollent, [email protected].
* Distributed under the terms of the MIT License.
*/
#ifndef STRING_VALUE_FORMATTER_H
#define STRING_VALUE_FORMATTER_H
#include "ValueFormatter.h"
class Settings;
class Value;
class StringValueFormatter : public ValueFormatter {
public:
StringValueFormatter();
virtual ~StringValueFormatter();
virtual Settings* GetSettings() const
{ return NULL; }
virtual status_t FormatValue(Value* value, BString& _output);
};
#endif // STRING_VALUE_FORMATTER_H