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