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