1/*
2 * Copyright 2015, Rene Gollent, rene@gollent.com.
3 * Distributed under the terms of the MIT License.
4 */
5
6
7#include "ValueFormatter.h"
8
9
10ValueFormatter::~ValueFormatter()
11{
12}
13
14
15bool
16ValueFormatter::SupportsValidation() const
17{
18	return false;
19}
20
21
22bool
23ValueFormatter::ValidateFormattedValue(const BString& input, type_code type)
24	const
25{
26	return false;
27}
28
29
30status_t
31ValueFormatter::GetValueFromFormattedInput(const BString& input,
32	type_code type, Value*& _output) const
33{
34	return B_NOT_SUPPORTED;
35}
36