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 12 class Settings; 13 class Value; 14 15 16 class StringValueFormatter : public ValueFormatter { 17 public: 18 StringValueFormatter(); 19 virtual ~StringValueFormatter(); 20 GetSettings()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