mirror of
https://review.haiku-os.org/haiku
synced 2025-02-02 03:36:14 +01:00
29 lines
532 B
C
29 lines
532 B
C
|
/*
|
||
|
* Copyright 2015, Rene Gollent, rene@gollent.com.
|
||
|
* Distributed under the terms of the MIT License.
|
||
|
*/
|
||
|
#ifndef BOOL_VALUE_FORMATTER_H
|
||
|
#define BOOL_VALUE_FORMATTER_H
|
||
|
|
||
|
|
||
|
#include "ValueFormatter.h"
|
||
|
|
||
|
|
||
|
class Settings;
|
||
|
class Value;
|
||
|
|
||
|
|
||
|
class BoolValueFormatter : public ValueFormatter {
|
||
|
public:
|
||
|
BoolValueFormatter();
|
||
|
virtual ~BoolValueFormatter();
|
||
|
|
||
|
virtual Settings* GetSettings() const
|
||
|
{ return NULL; }
|
||
|
|
||
|
virtual status_t FormatValue(Value* value, BString& _output);
|
||
|
};
|
||
|
|
||
|
|
||
|
#endif // BOOL_VALUE_FORMATTER_H
|